Changeset 2b43ac in git
- Timestamp:
- Aug 21, 2012, 1:23:20 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '2234726c50d679d6664181a5c72f75a6fd64a787')
- Children:
- 05051f9850bc9dcf9b7747cbc3bf2bd96bf76d7f
- Parents:
- 4fb3a73a9ab769b9cdb2ec0db33cdbf9e88bfedd
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
r4fb3a73 r2b43ac 20 20 ########################### libSingular* ######################### 21 21 22 libSingular_LTLIBRARIES = libSingular.la libSingular_g.la 22 if WANT_DEBUG 23 LIB_G=libSingular_g.la 24 else 25 LIB_G= 26 endif 27 28 libSingular_LTLIBRARIES = libSingular.la ${LIB_G} 23 29 libSingulardir = $(libdir)/singular 24 30 … … 182 188 ########################### Singular* ######################### 183 189 184 EXTRA_PROGRAMS = Singulard Singulardg libparse 190 if WANT_DEBUG 191 EXTRA_PROGRAMS = Singulard Singulardg libparse 192 else 193 EXTRA_PROGRAMS = Singulard libparse 194 endif 185 195 186 196 # the "optional_programs" variable should be defined in the configure … … 188 198 optional_Singular_programs = 189 199 190 bin_PROGRAMS = Singular Singularg ESingular TSingular $(optional_Singular_programs) 200 if WANT_DEBUG 201 bin_PROGRAMS = Singular Singularg ESingular TSingular $(optional_Singular_programs) 202 else 203 bin_PROGRAMS = Singular ESingular TSingular $(optional_Singular_programs) 204 endif 191 205 192 206 AMLDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel -L${abs_top_builddir}/libpolys/polys -L${top_builddir}/libpolys/coeffs -L${top_builddir}/libpolys/reporter -L${top_builddir}/libpolys/misc $(USE_FACTORY) -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/findexec -
configure.ac
r4fb3a73 r2b43ac 125 125 fi 126 126 127 AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug], [do NOT build the debugging version of the libraries]), 128 [if test "x$enableval" = "xyes"; then 129 ENABLE_DEBUG=yes 130 fi], ENABLE_DEBUG=no) 131 132 AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) 133 127 134 AC_CONFIG_SUBDIRS([findexec]) 128 135 AC_CONFIG_SUBDIRS([omalloc]) -
factory/Makefile.am
r4fb3a73 r2b43ac 9 9 AM_CPPFLAGS = -I${builddir}/include -I${srcdir}/include $(FLINT_CFLAGS) ${GMP_CFLAGS} ${NTL_CFLAGS} ${OMALLOC_CFLAGS} 10 10 11 lib_LTLIBRARIES = libfactory.la libfactory_g.la 11 if WANT_DEBUG 12 LIB_G=libfactory_g.la 13 else 14 LIB_G= 15 endif 16 17 lib_LTLIBRARIES = libfactory.la ${LIB_G} 12 18 13 19 libfactory_la_CXXFLAGS = -O3 -fomit-frame-pointer ${CXXTEMPLFLAGS} -
factory/configure.ac
r4fb3a73 r2b43ac 90 90 , 91 91 enable_debugoutput=no) 92 93 AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug], [do NOT build the debugging version of the libraries]), 94 [if test "x$enableval" = "xyes"; then 95 ENABLE_DEBUG=yes 96 fi], ENABLE_DEBUG=no) 97 98 AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) 92 99 93 100 # -
factory/libfac/Makefile.am
r4fb3a73 r2b43ac 1 noinst_LTLIBRARIES=libfac.la libfac_g.la 1 if WANT_DEBUG 2 LIB_G=libfac_g.la 3 else 4 LIB_G= 5 endif 6 7 noinst_LTLIBRARIES=libfac.la ${LIB_G} 2 8 3 9 CXXTEMPLFLAGS = ## -fno-implicit-templates -
findexec/Makefile.am
r4fb3a73 r2b43ac 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 2 3 libfindexec_LTLIBRARIES = libfindexec.la libfindexec_g.la 3 if WANT_DEBUG 4 LIB_G=libfindexec_g.la 5 else 6 LIB_G= 7 endif 8 9 libfindexec_LTLIBRARIES = libfindexec.la ${LIB_G} 4 10 libfindexecdir = $(libdir)/singular 5 11 -
findexec/configure.ac
r4fb3a73 r2b43ac 58 58 SING_CHECK_PIPE 59 59 60 AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug], [do NOT build the debugging version of the libraries]), 61 [if test "x$enableval" = "xyes"; then 62 ENABLE_DEBUG=yes 63 fi], ENABLE_DEBUG=no) 64 65 AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) 66 60 67 61 68 # CFLAGS -
kernel/Makefile.am
r4fb3a73 r2b43ac 12 12 CXXTEMPLFLAGS = ## -fno-implicit-templates 13 13 14 libkernel_LTLIBRARIES = libkernel.la libkernel_g.la 14 if WANT_DEBUG 15 LIB_G=libkernel_g.la 16 else 17 LIB_G= 18 endif 19 20 libkernel_LTLIBRARIES = libkernel.la ${LIB_G} 15 21 libkerneldir = $(libdir)/singular 16 22 -
libpolys/coeffs/Makefile.am
r4fb3a73 r2b43ac 4 4 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${top_srcdir}/../factory/include -I${top_builddir}/../factory/include ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS} 5 5 6 lib_LTLIBRARIES = libcoeffs.la libcoeffs_g.la 6 if WANT_DEBUG 7 LIB_G=libcoeffs_g.la 8 else 9 LIB_G= 10 endif 11 12 lib_LTLIBRARIES = libcoeffs.la ${LIB_G} 7 13 libcoeffsdir = $(libdir)/singular 8 14 -
libpolys/configure.ac
r4fb3a73 r2b43ac 115 115 fi 116 116 117 AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug], [do NOT build the debugging version of the libraries]), 118 [if test "x$enableval" = "xyes"; then 119 ENABLE_DEBUG=yes 120 fi], ENABLE_DEBUG=no) 121 122 AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) 123 117 124 # AC_SUBST(PREFIX) 118 125 AC_DEFINE_UNQUOTED(INSTALL_PREFIX,"$PREFIX",Prefix) -
libpolys/misc/Makefile.am
r4fb3a73 r2b43ac 4 4 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 5 5 6 lib_LTLIBRARIES = libmisc.la libmisc_g.la 6 if WANT_DEBUG 7 LIB_G=libmisc_g.la 8 else 9 LIB_G= 10 endif 11 12 lib_LTLIBRARIES = libmisc.la ${LIB_G} 7 13 libmiscdir = $(libdir)/singular 8 14 -
libpolys/polys/Makefile.am
r4fb3a73 r2b43ac 27 27 endif 28 28 29 libpolys_LTLIBRARIES = libpolys.la libpolys_g.la 29 if WANT_DEBUG 30 LIB_G=libpolys_g.la 31 MOD_G=p_Procs_FieldGeneral_g.la p_Procs_FieldIndep_g.la p_Procs_FieldQ_g.la p_Procs_FieldZp_g.la 32 else 33 LIB_G= 34 MOD_G= 35 endif 36 37 libpolys_LTLIBRARIES = libpolys.la ${LIB_G} 30 38 libpolysdir = $(libdir)/singular 31 39 … … 117 125 118 126 if ENABLE_P_PROCS_DYNAMIC 119 module_LTLIBRARIES=p_Procs_FieldGeneral.la p_Procs_FieldIndep.la p_Procs_FieldQ.la p_Procs_FieldZp.la \ 120 p_Procs_FieldGeneral_g.la p_Procs_FieldIndep_g.la p_Procs_FieldQ_g.la p_Procs_FieldZp_g.la 127 module_LTLIBRARIES=p_Procs_FieldGeneral.la p_Procs_FieldIndep.la p_Procs_FieldQ.la p_Procs_FieldZp.la ${MOD_G} 121 128 endif 122 129 -
libpolys/reporter/Makefile.am
r4fb3a73 r2b43ac 4 4 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 5 5 6 lib_LTLIBRARIES = libreporter.la libreporter_g.la 6 if WANT_DEBUG 7 LIB_G=libreporter_g.la 8 else 9 LIB_G= 10 endif 11 12 lib_LTLIBRARIES = libreporter.la ${LIB_G} 7 13 libreporterdir = $(libdir)/singular 8 14 -
numeric/Makefile.am
r4fb3a73 r2b43ac 1 libnumeric_LTLIBRARIES = libnumeric.la libnumeric_g.la 1 if WANT_DEBUG 2 LIB_G=libnumeric_g.la 3 else 4 LIB_G= 5 endif 6 7 libnumeric_LTLIBRARIES = libnumeric.la ${LIB_G} 2 8 libnumericdir = $(libdir)/singular 3 9 -
omalloc/Makefile.am
r4fb3a73 r2b43ac 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 2 3 lib_LTLIBRARIES=libomalloc.la libomalloc_g.la 3 if WANT_DEBUG 4 LIB_G=libomalloc_g.la 5 else 6 LIB_G= 7 endif 8 9 lib_LTLIBRARIES=libomalloc.la ${LIB_G} 4 10 5 11 libomalloc_includedir=$(includedir)/omalloc -
omalloc/configure.ac
r4fb3a73 r2b43ac 24 24 dnl help for configure 25 25 dnl 26 AC_ARG_ENABLE(debug, AS_HELP_STRING([--disable-debug], [do NOT build the debugging version of the libraries]), 27 [if test "x$enableval" = "xyes"; then 28 ENABLE_DEBUG=yes 29 fi], ENABLE_DEBUG=no) 30 31 AM_CONDITIONAL(WANT_DEBUG, test x"${ENABLE_DEBUG}" == xyes) 32 26 33 AC_ARG_WITH( 27 34 external-config_h, -
xalloc/Makefile.am
r4fb3a73 r2b43ac 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 2 3 libomalloc_LTLIBRARIES=libomalloc.la libomalloc_g.la 3 if WANT_DEBUG 4 LIB_G=libomalloc_g.la 5 else 6 LIB_G= 7 endif 8 9 libomalloc_LTLIBRARIES=libomalloc.la ${LIB_G} 4 10 libomallocdir = $(libdir)/ 5 11
Note: See TracChangeset
for help on using the changeset viewer.