Changeset d44785 in git
- Timestamp:
- Sep 27, 2011, 3:15:55 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- f3fb4d02b80a3234382e5318316d68fb66cc1f08
- Parents:
- b9e11ba1ccf9ce6f95143f2be5524707ba4e9689
- git-author:
- Volker Braun <vbraun.name@gmail.com>2011-09-27 15:15:55+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:13:40+01:00
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/Makefile.am
rb9e11ba rd44785 91 91 parseutil.cc \ 92 92 ftmpl_inst.cc \ 93 factory.h factoryconf.h cplusplus.h93 factory.h factoryconf.h 94 94 95 95 if WITH_PARSER_FOR_CANONICAL_FORM … … 322 322 ${builddir}/cplusplus > ${builddir}/cplusplus.h 323 323 324 cf_gmp.h: cplusplus.h325 326 324 #ftmpl_inst.o: ftmpl_inst.cc factoryconf.h factory.h \ 327 325 # $(addprefix templates/,$(templatesrc)) \ -
kernel/Makefile.am
rb9e11ba rd44785 25 25 # -fdiagnostics-show-option 26 26 27 libkernel_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H28 libkernel_g_a_CPPFLAGS = -DHAVE_CONFIG_H 27 libkernel_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 28 #libkernel_g_a_CPPFLAGS = 29 29 30 30 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys $(GMP_CFLAGS) $(FACTORY_CFLAGS) $(NTL_CFLAGS) … … 68 68 khstd.h kstd1.h \ 69 69 fglm.h fglmgauss.h fglmvec.h \ 70 GMPrat.h multicnt.h npolygon.h semic.h spectrum.h splist.h multicnt.h \70 GMPrat.h multicnt.h npolygon.h semic.h spectrum.h splist.h \ 71 71 eigenval.h units.h \ 72 72 fegetopt.h \ 73 73 ratgring.h shiftgb.h nc.h \ 74 semic.h \75 74 gfan.h preimage.h 76 75 … … 103 102 testg_SOURCES = test.cc 104 103 105 # testr: libkernel.a106 # testg: libkernel_g.a107 108 104 testr_LDADD = -lkernel -lpolys -lcoeffs -lresources -lreporter -lmisc $(FACTORY_LIBS) -lomalloc $(NTL_LIBS) $(GMP_LIBS) ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} 109 105 testg_LDADD = -lkernel_g -lpolys_g -lcoeffs_g -lresources_g -lreporter_g -lmisc_g $(FACTORY_LIBS) -lomalloc_g $(NTL_LIBS) $(GMP_LIBS) ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} 110 106 111 testr_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H112 testg_CPPFLAGS = -DHAVE_CONFIG_H 107 testr_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 108 #testg_CPPFLAGS = 113 109 114 110 CLEANFILES = $(TESTS) -
libpolys/coeffs/Makefile.am
rb9e11ba rd44785 25 25 gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \ 26 26 modulop.cc mpr_complex.cc 27 27 28 libcoeffs_a_SOURCES = $(SOURCES) 28 29 libcoeffs_g_a_SOURCES = $(SOURCES) 29 30 30 31 31 ## include_HEADERS = coeffs.h numbers.h … … 76 76 # -fdiagnostics-show-option 77 77 78 testr_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H79 testg_CPPFLAGS = -DHAVE_CONFIG_H78 testr_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 79 testg_CPPFLAGS = 80 80 81 81 #gftables: ${top_srcdir}/../factory/gftables -
libpolys/misc/Makefile.am
rb9e11ba rd44785 10 10 # -fdiagnostics-show-option 11 11 12 libmisc_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H13 libmisc_g_a_CPPFLAGS = -DHAVE_CONFIG_H 12 libmisc_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 13 #libmisc_g_a_CPPFLAGS = 14 14 15 15 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -
libpolys/polys/Makefile.am
rb9e11ba rd44785 7 7 NODEBUGCXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti 8 8 NODEBUGDEFS = -DNDEBUG -DOM_NDEBUG 9 10 AM_CPPFLAGS = -DHAVE_CONFIG_H11 9 12 10 AM_CFLAGS = ${PIPE} … … 31 29 32 30 prCopy.inc: prCopy.pl 33 perl ${srcdir}/prCopy.pl > prCopy.xx && mv prCopy.xx prCopy.inc 34 35 prCopy.cc: prCopy.inc 36 31 perl ${srcdir}/prCopy.pl > prCopy.inc 37 32 38 33 lib_LIBRARIES=libpolys.a libpolys_g.a … … 58 53 # OLD?: 59 54 60 BUILT_SOURCES = templates/p_Procs.inc55 BUILT_SOURCES = prCopy.inc templates/p_Procs.inc 61 56 62 57 noinst_HEADERS = … … 75 70 76 71 77 P_PROCS_CPPFLAGS_COMMON = -D HAVE_CONFIG_H -DDYNAMIC_VERSION72 P_PROCS_CPPFLAGS_COMMON = -DDYNAMIC_VERSION 78 73 79 74 p_Procs_FieldGeneral_la_CPPFLAGS = -Dp_Procs_FieldGeneral ${P_PROCS_CPPFLAGS_COMMON} ${NODEBUGDEFS} -
libpolys/resources/Makefile.am
rb9e11ba rd44785 10 10 # -fdiagnostics-show-option 11 11 12 libresources_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H13 libresources_g_a_CPPFLAGS = -DHAVE_CONFIG_H 12 libresources_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 13 #libresources_g_a_CPPFLAGS = 14 14 15 15 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -
libpolys/tests/Makefile.am
rb9e11ba rd44785 15 15 16 16 AM_CXXFLAGS = $(AM_CFLAGS) ${CXXTEMPLFLAGS} 17 18 AM_CPPFLAGS = -DHAVE_CONFIG_H19 17 20 18 INCLUDES = -I${top_srcdir} -I${top_srcdir}/.. -I${top_builddir} -I${top_builddir}/.. -I${srcdir} ${FACTORY_CFLAGS} ${GMP_CFLAGS} ${NTL_CFLAGS} … … 38 36 rings_test_LDADD = $(polys_test_LDADD) 39 37 38 39 BUILT_SOURCES = $(simple_test_SOURCES) $(coeffs_test_SOURCES) $(rings_test_SOURCES) $(polys_test_SOURCES) 40 40 41 gftables: ${top_srcdir}/../factory/gftables 41 42 ln -snf ${top_srcdir}/../factory/gftables ${builddir} … … 43 44 MOD: ${top_builddir}/polys/.libs 44 45 ln -snf ${top_builddir}/polys/.libs/ ${builddir}/MOD 45 46 BUILT_SOURCES = $(simple_test_SOURCES) $(coeffs_test_SOURCES) $(rings_test_SOURCES) $(polys_test_SOURCES)47 48 46 49 47 # How to generate *_runner.cpp … … 60 58 ${srcdir}/cxxtestgen.pl --no-eh -o $@ --error-printer ${srcdir}/rings_test.h 61 59 62 CLEANFILES = simple_test_runner.cpp coeffs_test_runner.cpp polys_test_runner.cpp rings_test_runner.cpp MOD gftables60 CLEANFILES = $(BUILT_SOURCES) -
numeric/Makefile.am
rb9e11ba rd44785 10 10 # -fdiagnostics-show-option 11 11 12 libnumeric_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H13 libnumeric_g_a_CPPFLAGS = -DHAVE_CONFIG_H 12 libnumeric_a_CPPFLAGS = -DNDEBUG -DOM_NDEBUG 13 #libnumeric_g_a_CPPFLAGS = 14 14 15 15 INCLUDES = -I${top_srcdir} -I${top_builddir} -I${top_srcdir}/libpolys -I${top_builddir}/libpolys ${GMP_CFLAGS} ${FACTORY_CFLAGS} ${NTL_CFLAGS}
Note: See TracChangeset
for help on using the changeset viewer.