Changeset 6d672b4 in git
- Timestamp:
- Nov 18, 2011, 11:31:17 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- e050c2c52ddb1b4df2ac2ffdead80b4c34feb2c2
- Parents:
- 80c102e75622524947cd27fb319c231bc62c9233
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-18 23:31:17+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-19 03:27:47+01:00
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
r80c102 r6d672b4 18 18 ########################### libSingular* ######################### 19 19 20 libSingular_L IBRARIES = libSingular.a libSingular_g.a20 libSingular_LTLIBRARIES = libSingular.la libSingular_g.la 21 21 libSingulardir = $(libdir)/singular 22 22 23 libSingular_ a_CFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE}24 libSingular_g_ a_CFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE}25 26 libSingular_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)27 libSingular_g_ a_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS)23 libSingular_la_CFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} 24 libSingular_g_la_CFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} 25 26 libSingular_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS) 27 libSingular_g_la_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS) 28 28 # -fdiagnostics-show-option 29 29 30 libSingular_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DLIBSINGULAR31 libSingular_g_ a_CPPFLAGS = -DLIBSINGULAR30 libSingular_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DLIBSINGULAR 31 libSingular_g_la_CPPFLAGS = -DLIBSINGULAR 32 32 33 33 SOURCES = Minor.cc\ … … 94 94 # slInit_Dynamic.cc 95 95 96 libSingular_ a_SOURCES = $(SOURCES)97 libSingular_g_ a_SOURCES = $(SOURCES)96 libSingular_la_SOURCES = $(SOURCES) 97 libSingular_g_la_SOURCES = $(SOURCES) 98 98 99 99 SingularHEADERS = Cache.h \ -
factory/Makefile.am
r80c102 r6d672b4 5 5 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} ${GMP_CFLAGS} ${NTL_CFLAGS} 6 6 7 lib_L IBRARIES = libfactory.a libfactory_g.a8 9 libfactory_ a_libdir = $(libdir)10 libfactory_g_ a_libdir = $(libdir)11 12 libfactory_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${CXXTEMPLFLAGS}13 libfactory_g_ a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${CXXTEMPLFLAGS}7 lib_LTLIBRARIES = libfactory.la libfactory_g.la 8 9 libfactory_la_libdir = $(libdir) 10 libfactory_g_la_libdir = $(libdir) 11 12 libfactory_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${CXXTEMPLFLAGS} 13 libfactory_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${CXXTEMPLFLAGS} 14 14 15 15 # factory source files … … 95 95 endif 96 96 97 libfactory_ a_SOURCES = $(SOURCES)98 libfactory_g_ a_SOURCES = $(SOURCES)97 libfactory_la_SOURCES = $(SOURCES) 98 libfactory_g_la_SOURCES = $(SOURCES) 99 99 100 100 # factory header files … … 216 216 # Support for building GF(q)-tables 217 217 # 218 # gengftables needs libfactory. a and factory.h AND is needed for218 # gengftables needs libfactory.la and factory.h AND is needed for 219 219 # generating gftable but the tables are not necessarily needed to 220 220 # compile and use libfactory (though it will be a lot slower). -
kernel/Makefile.am
r80c102 r6d672b4 12 12 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 13 13 14 libkernel_L IBRARIES = libkernel.a libkernel_g.a14 libkernel_LTLIBRARIES = libkernel.la libkernel_g.la 15 15 libkerneldir = $(libdir)/singular 16 16 17 libkernel_ a_CFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE}18 libkernel_g_ a_CFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE}17 libkernel_la_CFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} 18 libkernel_g_la_CFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} 19 19 ## -pedantic 20 20 21 libkernel_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS)22 libkernel_g_ a_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS)21 libkernel_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS) 22 libkernel_g_la_CXXFLAGS = -g -Wextra -Wall -Wno-long-long -pedantic ${PIPE} $(CXXTEMPLFLAGS) 23 23 # -fdiagnostics-show-option 24 24 25 libkernel_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG26 #libkernel_g_ a_CPPFLAGS =25 libkernel_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 26 #libkernel_g_la_CPPFLAGS = 27 27 28 28 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) $(FACTORY_CFLAGS) $(NTL_CFLAGS) … … 49 49 fegetopt.c mod2.h 50 50 51 libkernel_ a_SOURCES = $(SOURCES)52 libkernel_g_ a_SOURCES = $(SOURCES)51 libkernel_la_SOURCES = $(SOURCES) 52 libkernel_g_la_SOURCES = $(SOURCES) 53 53 54 54 KERNELHEADERS = polys.h hutil.h stairc.h ideals.h \ -
libpolys/coeffs/Makefile.am
r80c102 r6d672b4 1 libcoeffs_L IBRARIES = libcoeffs.a libcoeffs_g.a1 libcoeffs_LTLIBRARIES = libcoeffs.la libcoeffs_g.la 2 2 libcoeffsdir = $(libdir)/singular 3 3 … … 5 5 ## -fno-implicit-templates 6 6 7 libcoeffs_ a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE}8 libcoeffs_g_ a_CFLAGS = ${PIPE}7 libcoeffs_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 8 libcoeffs_g_la_CFLAGS = ${PIPE} 9 9 10 libcoeffs_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}11 libcoeffs_g_ a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}10 libcoeffs_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 11 libcoeffs_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 12 12 # -fdiagnostics-show-option 13 13 14 libcoeffs_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG15 libcoeffs_g_ a_CPPFLAGS =14 libcoeffs_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 15 libcoeffs_g_la_CPPFLAGS = 16 16 17 17 … … 28 28 modulop.cc mpr_complex.cc 29 29 30 libcoeffs_ a_SOURCES = $(SOURCES)31 libcoeffs_g_ a_SOURCES = $(SOURCES)30 libcoeffs_la_SOURCES = $(SOURCES) 31 libcoeffs_g_la_SOURCES = $(SOURCES) 32 32 33 33 libcoeffs_includedir =$(includedir)/singular/coeffs -
libpolys/misc/Makefile.am
r80c102 r6d672b4 1 libmisc_L IBRARIES = libmisc.a libmisc_g.a1 libmisc_LTLIBRARIES = libmisc.la libmisc_g.la 2 2 libmiscdir = $(libdir)/singular 3 3 4 4 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 5 5 6 libmisc_ a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE}7 libmisc_g_ a_CFLAGS = ${PIPE}6 libmisc_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 7 libmisc_g_la_CFLAGS = ${PIPE} 8 8 9 libmisc_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}10 libmisc_g_ a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}9 libmisc_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 10 libmisc_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 11 11 # -fdiagnostics-show-option 12 12 13 libmisc_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG14 #libmisc_g_ a_CPPFLAGS =13 libmisc_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 14 #libmisc_g_la_CPPFLAGS = 15 15 16 16 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 17 17 18 18 SOURCES = intvec.cc int64vec.cc options.c 19 libmisc_ a_SOURCES = $(SOURCES)20 libmisc_g_ a_SOURCES = $(SOURCES)19 libmisc_la_SOURCES = $(SOURCES) 20 libmisc_g_la_SOURCES = $(SOURCES) 21 21 22 22 libmisc_includedir = $(includedir)/singular/misc -
libpolys/polys/Makefile.am
r80c102 r6d672b4 27 27 endif 28 28 29 libpolys_L IBRARIES = libpolys.a libpolys_g.a29 libpolys_LTLIBRARIES = libpolys.la libpolys_g.la 30 30 libpolysdir = $(libdir)/singular 31 31 … … 126 126 nobase_libpolys_include_HEADERS = $(LIBPOLYSHEADERS) 127 127 128 libpolys_ a_SOURCES = ${SOURCES}129 libpolys_g_ a_SOURCES = ${SOURCES}128 libpolys_la_SOURCES = ${SOURCES} 129 libpolys_g_la_SOURCES = ${SOURCES} 130 130 131 EXTRA_libpolys_ a_SOURCES = templates/p_Procs_Static.cc templates/p_Procs_Dynamic.cc131 EXTRA_libpolys_la_SOURCES = templates/p_Procs_Static.cc templates/p_Procs_Dynamic.cc 132 132 133 libpolys_g_ a_CXXFLAGS = ${DEBUGCXXFLAGS}134 libpolys_ a_CPPFLAGS = ${NODEBUGDEFS}133 libpolys_g_la_CXXFLAGS = ${DEBUGCXXFLAGS} 134 libpolys_la_CPPFLAGS = ${NODEBUGDEFS} 135 135 136 136 -
libpolys/reporter/Makefile.am
r80c102 r6d672b4 1 libreporter_L IBRARIES=libreporter.a libreporter_g.a1 libreporter_LTLIBRARIES=libreporter.la libreporter_g.la 2 2 libreporterdir = $(libdir)/singular 3 3 4 4 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 5 5 6 libreporter_ a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE}7 libreporter_g_ a_CFLAGS = ${PIPE}6 libreporter_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 7 libreporter_g_la_CFLAGS = ${PIPE} 8 8 9 libreporter_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}10 libreporter_g_ a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}9 libreporter_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 10 libreporter_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 11 11 # -fdiagnostics-show-option 12 12 13 libreporter_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H14 libreporter_g_ a_CPPFLAGS = -DHAVE_CONFIG_H13 libreporter_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 14 libreporter_g_la_CPPFLAGS = -DHAVE_CONFIG_H 15 15 16 16 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 17 17 18 18 SOURCES = dError.c reporter.cc 19 libreporter_ a_SOURCES = $(SOURCES)20 libreporter_g_ a_SOURCES = $(SOURCES)19 libreporter_la_SOURCES = $(SOURCES) 20 libreporter_g_la_SOURCES = $(SOURCES) 21 21 22 22 libreporter_includedir =$(includedir)/singular/reporter -
libpolys/resources/Makefile.am
r80c102 r6d672b4 1 libresources_L IBRARIES=libresources.a libresources_g.a1 libresources_LTLIBRARIES=libresources.la libresources_g.la 2 2 libresourcesdir = $(libdir)/singular 3 3 4 4 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 5 5 6 libresources_ a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE}7 libresources_g_ a_CFLAGS = ${PIPE}6 libresources_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 7 libresources_g_la_CFLAGS = ${PIPE} 8 8 9 libresources_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}10 libresources_g_ a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}9 libresources_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 10 libresources_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 11 11 # -fdiagnostics-show-option 12 12 13 libresources_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG14 #libresources_g_ a_CPPFLAGS =13 libresources_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 14 #libresources_g_la_CPPFLAGS = 15 15 16 16 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 17 17 18 18 SOURCES = feFopen.cc feResource.cc 19 libresources_ a_SOURCES = $(SOURCES)20 libresources_g_ a_SOURCES = $(SOURCES)19 libresources_la_SOURCES = $(SOURCES) 20 libresources_g_la_SOURCES = $(SOURCES) 21 21 22 22 libresources_includedir =$(includedir)/singular/resources -
numeric/Makefile.am
r80c102 r6d672b4 1 libnumeric_L IBRARIES = libnumeric.a libnumeric_g.a1 libnumeric_LTLIBRARIES = libnumeric.la libnumeric_g.la 2 2 libnumericdir = $(libdir)/singular 3 3 4 4 CXXTEMPLFLAGS = --no-exceptions ## -fno-implicit-templates 5 5 6 libnumeric_ a_CFLAGS = -O3 -fomit-frame-pointer ${PIPE}7 libnumeric_g_ a_CFLAGS = ${PIPE}6 libnumeric_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 7 libnumeric_g_la_CFLAGS = ${PIPE} 8 8 9 libnumeric_ a_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS}10 libnumeric_g_ a_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS}9 libnumeric_la_CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${CXXTEMPLFLAGS} 10 libnumeric_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} ${CXXTEMPLFLAGS} 11 11 # -fdiagnostics-show-option 12 12 13 libnumeric_ a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG14 #libnumeric_g_ a_CPPFLAGS =13 libnumeric_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 14 #libnumeric_g_la_CPPFLAGS = 15 15 16 16 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} ${FACTORY_CFLAGS} ${NTL_CFLAGS} 17 17 18 18 SOURCES = mpr_base.cc mpr_inout.cc mpr_numeric.cc 19 libnumeric_ a_SOURCES = $(SOURCES)20 libnumeric_g_ a_SOURCES = $(SOURCES)19 libnumeric_la_SOURCES = $(SOURCES) 20 libnumeric_g_la_SOURCES = $(SOURCES) 21 21 22 22 libnumeric_includedir =$(includedir)/singular/numeric/ -
omalloc/Makefile.am
r80c102 r6d672b4 2 2 AM_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc 3 3 4 lib_L IBRARIES=libomalloc.a libomalloc_g.a4 lib_LTLIBRARIES=libomalloc.la libomalloc_g.la 5 5 6 6 libomalloc_includedir=$(includedir)/omalloc … … 30 30 INCLUDES=-I${top_srcdir}/.. -I${top_builddir}/.. 31 31 32 libomalloc_ a_SOURCES=$(SOURCES) $(noinst_HEADERS)33 libomalloc_g_ a_SOURCES=$(SOURCES) $(noinst_HEADERS)32 libomalloc_la_SOURCES=$(SOURCES) $(noinst_HEADERS) 33 libomalloc_g_la_SOURCES=$(SOURCES) $(noinst_HEADERS) 34 34 35 nodist_libomalloc_ a_SOURCES = omConfig.h mylimits.h omalloc.h omTables.inc36 nodist_libomalloc_g_ a_SOURCES = omConfig.h omalloc.h omTables.inc35 nodist_libomalloc_la_SOURCES = omConfig.h mylimits.h omalloc.h omTables.inc 36 nodist_libomalloc_g_la_SOURCES = omConfig.h omalloc.h omTables.inc 37 37 38 libomalloc_ a_CPPFLAGS= -DHAVE_CONFIG_H -DOM_NDEBUG39 libomalloc_g_ a_CPPFLAGS= -DHAVE_CONFIG_H38 libomalloc_la_CPPFLAGS= -DHAVE_CONFIG_H -DOM_NDEBUG 39 libomalloc_g_la_CPPFLAGS= -DHAVE_CONFIG_H 40 40 41 41 BUILT_SOURCES = omTables.inc omTables.h
Note: See TracChangeset
for help on using the changeset viewer.