Changeset 4bc0ab9 in git
- Timestamp:
- Mar 29, 2012, 2:15:30 PM (11 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- 9f524dff0ae56f9b1800fbdba56cdbb6f6b120b3
- Parents:
- fca452a782a426cceaa9e98f3a95b5a5acccd04f
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
findexec/Makefile.am
rfca452 r4bc0ab9 13 13 # -fdiagnostics-show-option 14 14 15 libfindexec_la_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 16 libfindexec_g_la_CPPFLAGS = -DHAVE_CONFIG_H 15 AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} 17 16 18 INCLUDES = -I${top_srcdir} -I${top_builddir} 17 libfindexec_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 18 libfindexec_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 19 19 20 20 SOURCES = omFindExec.c feResource.cc feFopen.cc -
kernel/Makefile.am
rfca452 r4bc0ab9 23 23 # -fdiagnostics-show-option 24 24 25 libkernel_la_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 26 libkernel_g_la_CPPFLAGS = -DHAVE_CONFIG_H 25 AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) -I${top_srcdir}/factory/include -I${top_builddir}/factory/include $(FACTORY_CFLAGS) $(NTL_CFLAGS) 27 26 28 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) -I${top_srcdir}/factory/include -I${top_builddir}/factory/include $(FACTORY_CFLAGS) $(NTL_CFLAGS) 27 libkernel_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 28 libkernel_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 29 29 30 30 SOURCES = polys.cc febase.cc feread.cc \ … … 103 103 test_s_g_LDADD = -lkernel_g -lpolys_g -lcoeffs_g -lreporter_g -lmisc_g $(FACTORY_LIBS) -lomalloc_g -lfindexec_g $(NTL_LIBS) $(GMP_LIBS) ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} 104 104 105 test_s_r_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG106 test_s_g_CPPFLAGS = -DHAVE_CONFIG_H105 test_s_r_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 106 test_s_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 107 107 108 108 test_s_r_LDFLAGS = -static … … 122 122 test_d_g_LDADD = -lkernel_g -lpolys_g -lcoeffs_g -lreporter_g -lmisc_g $(FACTORY_LIBS) -lomalloc_g -lfindexec_g $(NTL_LIBS) $(GMP_LIBS) ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} 123 123 124 test_d_r_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 125 test_d_g_CPPFLAGS = -DHAVE_CONFIG_H 126 124 test_d_r_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 125 test_d_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 127 126 128 127 -
libpolys/coeffs/Makefile.am
rfca452 r4bc0ab9 4 4 CXXTEMPLFLAGS = 5 5 ## -fno-implicit-templates 6 7 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} 6 8 7 9 libcoeffs_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} … … 12 14 # -fdiagnostics-show-option 13 15 14 libcoeffs_la_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG15 libcoeffs_g_la_CPPFLAGS = -DHAVE_CONFIG_H16 libcoeffs_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 17 libcoeffs_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 16 18 17 19 … … 21 23 # mpr_complex.h mpr_global.h 22 24 23 24 INCLUDES = -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}25 25 26 26 SOURCES = \ … … 86 86 87 87 88 test_s_r_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG89 test_s_g_CPPFLAGS = -DHAVE_CONFIG_H88 test_s_r_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 89 test_s_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 90 90 91 test_d_r_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 92 test_d_g_CPPFLAGS = -DHAVE_CONFIG_H 91 test_d_r_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 92 test_d_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 93 93 94 94 95 -
libpolys/misc/Makefile.am
rfca452 r4bc0ab9 1 CXXTEMPLFLAGS = 2 ## -fno-implicit-templates 1 3 noinst_LTLIBRARIES = libmisc.la libmisc_g.la 2 4 # libmiscdir = $(libdir)/singular 3 5 4 CXXTEMPLFLAGS = ## -fno-implicit-templates 6 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 7 5 8 6 9 libmisc_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} … … 11 14 # -fdiagnostics-show-option 12 15 13 libmisc_la_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 14 libmisc_g_la_CPPFLAGS = -DHAVE_CONFIG_H 15 16 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 16 libmisc_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 17 libmisc_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 17 18 18 19 SOURCES = intvec.cc int64vec.cc options.c -
libpolys/polys/Makefile.am
rfca452 r4bc0ab9 10 10 AM_CXXFLAGS = ${PIPE} ${CXXTEMPLFLAGS} 11 11 12 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} -I${top_srcdir}/../factory/include -I${top_builddir}/../factory/include ${GMP_CFLAGS}13 12 AM_LDFLAGS = -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${abs_top_builddir}/../omalloc -L${abs_builddir} 13 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 ${GMP_CFLAGS} 14 14 15 15 16 if ENABLE_P_PROCS_STATIC … … 64 65 templates/p_Merge_q__T.cc templates/p_Add_q__T.cc templates/p_Neg__T.cc 65 66 66 P_PROCS_CPPFLAGS_COMMON = -DDYNAMIC_VERSION67 P_PROCS_CPPFLAGS_COMMON = ${AM_CPPFLAGS} -DDYNAMIC_VERSION 67 68 68 69 p_Procs_FieldGeneral_la_CPPFLAGS = -Dp_Procs_FieldGeneral ${P_PROCS_CPPFLAGS_COMMON} ${NODEBUGDEFS} … … 133 134 134 135 libpolys_g_la_CXXFLAGS = ${DEBUGCXXFLAGS} 135 libpolys_la_CPPFLAGS = ${NODEBUGDEFS} 136 libpolys_la_CPPFLAGS = ${NODEBUGDEFS} ${AM_CPPFLAGS} 136 137 137 138 … … 149 150 templates_p_Procs_Generate_CFLAGS = ${NODEBUGCFLAGS} 150 151 templates_p_Procs_Generate_CXXFLAGS = ${NODEBUGCXXFLAGS} 151 templates_p_Procs_Generate_CPPFLAGS = ${NODEBUGDEFS} ${USE_P_PROCS_STATIC} 152 templates_p_Procs_Generate_CPPFLAGS = ${NODEBUGDEFS} ${USE_P_PROCS_STATIC} ${AM_CPPFLAGS} 152 153 templates_p_Procs_Generate_LDADD = -lreporter -lomalloc 153 154 -
libpolys/reporter/Makefile.am
rfca452 r4bc0ab9 1 CXXTEMPLFLAGS = 2 ## -fno-implicit-templates 1 3 noinst_LTLIBRARIES=libreporter.la libreporter_g.la 2 4 # libreporterdir = $(libdir)/singular 3 5 4 CXXTEMPLFLAGS = ## -fno-implicit-templates 6 AM_CPPFLAGS = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. 7 5 8 6 9 libreporter_la_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} … … 11 14 # -fdiagnostics-show-option 12 15 13 libreporter_la_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H14 libreporter_g_la_CPPFLAGS = -DHAVE_CONFIG_H16 libreporter_la_CPPFLAGS = ${AM_CPPFLAGS} -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 17 libreporter_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 15 18 16 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/..17 19 18 20 SOURCES = dError.c reporter.cc -
libpolys/tests/Makefile.am
rfca452 r4bc0ab9 9 9 10 10 11 INCLUDES = -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}11 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} 12 12 13 13 TESTS = simple_test \ … … 41 41 RELEASECFLAGS = -O3 -fomit-frame-pointer ${PIPE} 42 42 RELEASECXXFLAGS = -O3 -fomit-frame-pointer ${PIPE} 43 RELEASECPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG43 RELEASECPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 44 44 45 45 coeffs_test_s_r_CFLAGS =${RELEASECFLAGS} … … 73 73 DEBUGCFLAGS = $(AM_CFLAGS) -g -Wextra -Wall -Wno-long-long ${PIPE} 74 74 DEBUGCXXFLAGS = $(AM_CXXFLAGS) ${DEBUGCFLAGS} ${CXXTEMPLFLAGS} 75 DEBUGCPPFLAGS = -DHAVE_CONFIG_H75 DEBUGCPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 76 76 77 77 coeffs_test_s_g_CFLAGS =${DEBUGCFLAGS} -
numeric/Makefile.am
rfca452 r4bc0ab9 11 11 # -fdiagnostics-show-option 12 12 13 libnumeric_la_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 14 libnumeric_g_la_CPPFLAGS = -DHAVE_CONFIG_H 13 AM_CPPFLAGS = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} -I${top_srcdir}/factory/include -I${top_builddir}/factory/include ${FACTORY_CFLAGS} ${NTL_CFLAGS} 15 14 16 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} -I${top_srcdir}/factory/include -I${top_builddir}/factory/include ${FACTORY_CFLAGS} ${NTL_CFLAGS} 15 libnumeric_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 16 libnumeric_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 17 17 18 18 SOURCES = mpr_base.cc mpr_inout.cc mpr_numeric.cc -
omalloc/Makefile.am
rfca452 r4bc0ab9 27 27 EXTRA_DIST = omalloc.c omtTestAlloc.c omtTest.h omMmap.c 28 28 29 INCLUDES=-I${abs_top_srcdir}/.. -I${abs_top_builddir}/..29 AM_CPPFLAGS =-I${abs_top_srcdir}/.. -I${abs_top_builddir}/.. 30 30 31 31 libomalloc_la_SOURCES=$(SOURCES) $(noinst_HEADERS) … … 40 40 ### libomalloc_la_CPPFLAGS= -DOM_ALLOC_INTERNAL -DHAVE_CONFIG_H -DOM_NDEBUG 41 41 42 libomalloc_la_CPPFLAGS =-DOM_ALLOC_INTERNAL -DHAVE_CONFIG_H43 libomalloc_g_la_CPPFLAGS= -DOM_ALLOC_INTERNAL -DHAVE_CONFIG_H42 libomalloc_la_CPPFLAGS = ${AM_CPPFLAGS} -DOM_ALLOC_INTERNAL -DHAVE_CONFIG_H 43 libomalloc_g_la_CPPFLAGS= ${AM_CPPFLAGS} -DOM_ALLOC_INTERNAL -DHAVE_CONFIG_H 44 44 45 45 BUILT_SOURCES = omTables.inc omTables.h … … 54 54 omTables_SOURCES = omAllocPrivate.h omTables.c mylimits.h 55 55 nodist_omTables_SOURCES = omConfig.h 56 omTables_CPPFLAGS = -DOM_GENERATE_INC -DHAVE_CONFIG_H56 omTables_CPPFLAGS = ${AM_CPPFLAGS} -DOM_GENERATE_INC -DHAVE_CONFIG_H 57 57 58 58 CLEANFILES = $(BUILT_SOURCES) … … 83 83 84 84 omtTest_s_g_SOURCES = $(OMTTESTSSOURCES) 85 omtTest_s_g_CPPFLAGS =-DHAVE_CONFIG_H86 omtTest_s_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE}87 omtTest_s_g_LDADD = libomalloc_g.la85 omtTest_s_g_CPPFLAGS= ${AM_CPPFLAGS} -DHAVE_CONFIG_H 86 omtTest_s_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} 87 omtTest_s_g_LDADD = libomalloc_g.la 88 88 omtTest_s_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static 89 89 90 omtTest_s_m_CPPFLAGS =-DOM_TEST_MALLOC -DHAVE_CONFIG_H91 omtTest_s_m_SOURCES 92 omtTest_s_m_LDADD = libomalloc_g.la90 omtTest_s_m_CPPFLAGS= ${AM_CPPFLAGS} -DOM_TEST_MALLOC -DHAVE_CONFIG_H 91 omtTest_s_m_SOURCES = $(OMTTESTSSOURCES) 92 omtTest_s_m_LDADD = libomalloc_g.la 93 93 omtTest_s_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static 94 94 95 95 omtTest_s_r_SOURCES = $(OMTTESTSSOURCES) 96 omtTest_s_r_CPPFLAGS =-DOM_NDEBUG97 omtTest_s_r_CFLAGS = -O3 ${PIPE}98 omtTest_s_r_LDADD = libomalloc.la96 omtTest_s_r_CPPFLAGS= ${AM_CPPFLAGS} -DOM_NDEBUG 97 omtTest_s_r_CFLAGS = -O3 ${PIPE} 98 omtTest_s_r_LDADD = libomalloc.la 99 99 omtTest_s_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -static 100 100 … … 102 102 103 103 omtTest_d_g_SOURCES = $(OMTTESTSSOURCES) 104 omtTest_d_g_CPPFLAGS =-DHAVE_CONFIG_H105 omtTest_d_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE}106 omtTest_d_g_LDADD = libomalloc_g.la104 omtTest_d_g_CPPFLAGS= ${AM_CPPFLAGS} -DHAVE_CONFIG_H 105 omtTest_d_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} 106 omtTest_d_g_LDADD = libomalloc_g.la 107 107 omtTest_d_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc 108 108 109 omtTest_d_m_CPPFLAGS =-DOM_TEST_MALLOC -DHAVE_CONFIG_H110 omtTest_d_m_SOURCES 111 omtTest_d_m_LDADD = libomalloc_g.la109 omtTest_d_m_CPPFLAGS= ${AM_CPPFLAGS} -DOM_TEST_MALLOC -DHAVE_CONFIG_H 110 omtTest_d_m_SOURCES = $(OMTTESTSSOURCES) 111 omtTest_d_m_LDADD = libomalloc_g.la 112 112 omtTest_d_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc 113 113 114 114 omtTest_d_r_SOURCES = $(OMTTESTSSOURCES) 115 omtTest_d_r_CPPFLAGS =-DOM_NDEBUG116 omtTest_d_r_CFLAGS = -O3 ${PIPE}117 omtTest_d_r_LDADD = libomalloc.la115 omtTest_d_r_CPPFLAGS= ${AM_CPPFLAGS} -DOM_NDEBUG 116 omtTest_d_r_CFLAGS = -O3 ${PIPE} 117 omtTest_d_r_LDADD = libomalloc.la 118 118 omtTest_d_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc -
xalloc/Makefile.am
rfca452 r4bc0ab9 10 10 SOURCES = dummy.c 11 11 12 INCLUDES = -I${srcdir}12 AM_CPPFLAGS = -I${srcdir} 13 13 14 14 libomalloc_la_SOURCES =$(SOURCES) … … 21 21 libomalloc_g_la_CXXFLAGS= -g -Wextra -Wall -pedantic -Wno-long-long ${PIPE} 22 22 23 libomalloc_la_CPPFLAGS = -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG24 libomalloc_g_la_CPPFLAGS= -DHAVE_CONFIG_H23 libomalloc_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 24 libomalloc_g_la_CPPFLAGS= ${AM_CPPFLAGS} -DHAVE_CONFIG_H 25 25
Note: See TracChangeset
for help on using the changeset viewer.