Changeset 3b8a6e in git
- Timestamp:
- Mar 29, 2012, 2:36:44 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- d1eb80a0883d1bde6bec62a010c7dd44e1dce366
- Parents:
- 9f524dff0ae56f9b1800fbdba56cdbb6f6b120b3
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-29 14:36:44+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-29 14:42:10+02:00
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
r9f524d r3b8a6e 176 176 # handle all the generated *.inc 177 177 178 AM_LDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel -L${abs_top_builddir}/libpolys/polys $(USE_FACTORY) -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/findexec179 180 178 noinst_PROGRAMS = gentable2 gentable1 feOptGen feOptES feOptTS 181 179 … … 213 211 bin_PROGRAMS = Singular Singularg ESingular TSingular $(optional_Singular_programs) 214 212 213 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 214 215 215 Singular_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} 216 216 Singularg_CFLAGS = -g ${PIPE} … … 231 231 Singularg_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 232 232 233 Singular_LDFLAGS = -static 234 Singularg_LDFLAGS = -static 233 Singular_LDFLAGS = -static ${AMLDFLAGS} 234 Singularg_LDFLAGS = -static ${AMLDFLAGS} 235 235 236 236 … … 252 252 Singulard_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG 253 253 Singulardg_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 254 255 Singulard_LDFLAGS = ${AMLDFLAGS} 256 Singulardg_LDFLAGS = ${AMLDFLAGS} 254 257 255 258 … … 259 262 ESingular_CXXFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS) 260 263 ESingular_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG -DESINGULAR -DPROTO 261 ESingular_LDFLAGS = -static ${AM _LDFLAGS} -L${abs_top_builddir}/libpolys/reporter -L${abs_top_builddir}/libpolys/misc264 ESingular_LDFLAGS = -static ${AMLDFLAGS} 262 265 ESingular_LDADD = -lreporter -lmisc -lomalloc -lfindexec 263 266 … … 269 272 TSingular_CXXFLAGS = -O3 -fomit-frame-pointer -Wextra -Wall -Wno-long-long ${PIPE} $(CXXTEMPLFLAGS) 270 273 TSingular_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H -DNDEBUG -DOM_NDEBUG -DTSINGULAR -DPROTO 271 TSingular_LDFLAGS = -static ${AM _LDFLAGS} -L${abs_top_builddir}/libpolys/reporter -L${abs_top_builddir}/libpolys/misc274 TSingular_LDFLAGS = -static ${AMLDFLAGS} 272 275 TSingular_LDADD = -lreporter -lmisc -lomalloc -lfindexec 273 276 … … 286 289 # # libSingular.la -lnumeric 287 290 libparse_LDADD = -lomalloc 288 libparse_LDFLAGS = -static ${AM _LDFLAGS}291 libparse_LDFLAGS = -static ${AMLDFLAGS} 289 292 # TODO for libparse: 290 293 # multiple definition of `category_out': libparse.cc v.s. utils.cc … … 334 337 test_s_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 335 338 336 test_s_r_LDFLAGS = -static 337 test_s_g_LDFLAGS = -static 339 test_s_r_LDFLAGS = -static ${AMLDFLAGS} 340 test_s_g_LDFLAGS = -static ${AMLDFLAGS} 338 341 339 342 … … 355 358 test_d_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 356 359 360 test_d_r_LDFLAGS = ${AMLDFLAGS} 361 test_d_g_LDFLAGS = ${AMLDFLAGS} 362 357 363 ######################################################### 358 364 -
dyn_modules/bigintm/Makefile.am
r9f524d r3b8a6e 30 30 31 31 32 AM _LDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel \32 AMLDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel \ 33 33 -L${abs_top_builddir}/libpolys/polys $(USE_FACTORY) -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/findexec 34 34 … … 47 47 bigintm_g_la_CXXFLAGS = ${DEBUGCXXFLAGS} 48 48 49 P_PROCS_MODULE_LDFLAGS = -shared -module 50 P_PROCS_MODULE_LDFLAGSG = -shared -module 49 if ENABLE_P_PROCS_DYNAMIC 50 P_PROCS_MODULE_LDFLAGS = ${AMLDFLAGS} -shared -module 51 P_PROCS_MODULE_LDFLAGSG = ${AMLDFLAGS} -shared -module 52 else 53 P_PROCS_MODULE_LDFLAGS = ${AMLDFLAGS} 54 P_PROCS_MODULE_LDFLAGSG = ${AMLDFLAGS} 55 endif 51 56 52 57 # Add under Mac OS X: -twolevel_namespace -weak_reference_mismatches weak -undefined dynamic_lookup -
dyn_modules/syzextra/Makefile.am
r9f524d r3b8a6e 30 30 31 31 32 AM _LDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel \32 AMLDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel \ 33 33 -L${abs_top_builddir}/libpolys/polys $(USE_FACTORY) -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/findexec 34 34 … … 47 47 syzextra_g_la_CXXFLAGS = ${DEBUGCXXFLAGS} 48 48 49 P_PROCS_MODULE_LDFLAGS = -shared -module 50 P_PROCS_MODULE_LDFLAGSG = -shared -module 49 P_PROCS_MODULE_LDFLAGS = -shared -module ${AMLDFLAGS} 50 P_PROCS_MODULE_LDFLAGSG = -shared -module ${AMLDFLAGS} 51 51 52 52 # Add under Mac OS X: -twolevel_namespace -weak_reference_mismatches weak -undefined dynamic_lookup -
factory/Makefile.am
r9f524d r3b8a6e 9 9 AM_CPPFLAGS = -I${builddir}/include -I${srcdir}/include ${GMP_CFLAGS} ${NTL_CFLAGS} ${OMALLOC_CFLAGS} 10 10 11 AM_LDFLAGS = -L${abs_builddir}12 13 11 lib_LTLIBRARIES = libfactory.la libfactory_g.la 14 12 15 13 libfactory_la_CXXFLAGS = -O3 -fomit-frame-pointer ${CXXTEMPLFLAGS} 16 14 libfactory_la_LIBADD = ${abs_builddir}/libfac/libfac.la ${GMP_LIBS} ${NTL_LIBS} 17 libfactory_la_LDFLAGS = ${AM_LDFLAGS}-release ${PACKAGE_VERSION}15 libfactory_la_LDFLAGS = -release ${PACKAGE_VERSION} 18 16 libfactory_g_la_CXXFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long ${CXXTEMPLFLAGS} 19 17 libfactory_g_la_LIBADD = ${abs_builddir}/libfac/libfac_g.la ${GMP_LIBS} ${NTL_LIBS} 20 libfactory_g_la_LDFLAGS = ${AM_LDFLAGS}-release ${PACKAGE_VERSION}18 libfactory_g_la_LDFLAGS = -release ${PACKAGE_VERSION} 21 19 22 20 … … 335 333 check_PROGRAMS = $(TESTS) 336 334 335 AMLDFLAGS = -L${abs_builddir} 336 337 337 TESTSSOURCES = test.cc 338 338 … … 352 352 test_s_r_LDADD = -lfactory $(GMP_LIBS) $(NTL_LIBS) $(TESTADDLIB) 353 353 354 test_s_r_LDFLAGS = -static ${AM _LDFLAGS}355 test_s_g_LDFLAGS = -static ${AM _LDFLAGS}354 test_s_r_LDFLAGS = -static ${AMLDFLAGS} 355 test_s_g_LDFLAGS = -static ${AMLDFLAGS} 356 356 357 357 test_d_g_SOURCES = $(TESTSSOURCES) … … 365 365 test_d_r_LDADD = -lfactory $(GMP_LIBS) $(NTL_LIBS) $(TESTADDLIB) 366 366 367 test_d_r_LDFLAGS = ${AMLDFLAGS} 368 test_d_g_LDFLAGS = ${AMLDFLAGS} -
kernel/Makefile.am
r9f524d r3b8a6e 80 80 endif 81 81 82 AM _LDFLAGS = -L${top_builddir}/kernel -L${top_builddir}/libpolys/polys -L${top_builddir}/libpolys/coeffs -L${top_builddir}/libpolys/reporter -L${top_builddir}/libpolys/misc $(USE_FACTORY) -L${top_builddir}/omalloc -L${top_builddir}/findexec82 AMLDFLAGS = -L${top_builddir}/kernel -L${top_builddir}/libpolys/polys -L${top_builddir}/libpolys/coeffs -L${top_builddir}/libpolys/reporter -L${top_builddir}/libpolys/misc $(USE_FACTORY) -L${top_builddir}/omalloc -L${top_builddir}/findexec 83 83 84 84 … … 106 106 test_s_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 107 107 108 test_s_r_LDFLAGS = -static 109 test_s_g_LDFLAGS = -static 108 test_s_r_LDFLAGS = -static ${AMLDFLAGS} 109 test_s_g_LDFLAGS = -static ${AMLDFLAGS} 110 110 111 111 … … 125 125 test_d_g_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 126 126 127 test_d_r_LDFLAGS = ${AMLDFLAGS} 128 test_d_g_LDFLAGS = ${AMLDFLAGS} 127 129 128 130 # These files are built first -
libpolys/coeffs/Makefile.am
r9f524d r3b8a6e 36 36 37 37 38 ## for testing... 38 39 if ENABLE_FACTORY 39 40 USE_FACTORY = -L${top_builddir}/../factory … … 42 43 endif 43 44 44 ## for testing... 45 AM_LDFLAGS = -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${top_builddir}/misc ${USE_FACTORY} -L${top_builddir}/../omalloc -L${abs_top_builddir}/../findexec -L${abs_builddir} 46 45 AMLDFLAGS = -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${top_builddir}/misc ${USE_FACTORY} -L${top_builddir}/../omalloc -L${abs_top_builddir}/../findexec 47 46 48 47 TESTS_ENVIRONMENT = SINGULARPATH='${top_srcdir}/../factory:${top_builddir}/../factory' … … 92 91 93 92 93 test_s_r_LDFLAGS = -static ${AMLDFLAGS} 94 test_s_g_LDFLAGS = -static ${AMLDFLAGS} 94 95 95 test_ s_r_LDFLAGS = -static96 test_ s_g_LDFLAGS = -static96 test_d_r_LDFLAGS = ${AMLDFLAGS} 97 test_d_g_LDFLAGS = ${AMLDFLAGS} -
libpolys/polys/Makefile.am
r9f524d r3b8a6e 10 10 AM_CXXFLAGS = ${PIPE} ${CXXTEMPLFLAGS} 11 11 12 AM_LDFLAGS = -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${abs_top_builddir}/../omalloc -L${abs_builddir}13 12 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 13 … … 88 87 89 88 P_PROCS_MODULE_LDFLAGS = -shared -module 90 # -L${top_builddir}/coeffs -lcoeffs91 89 P_PROCS_MODULE_LDFLAGSG = -shared -module 92 # -L${top_builddir}/coeffs -lcoeffs_g93 90 94 91 p_Procs_FieldGeneral_la_LDFLAGS = ${P_PROCS_MODULE_LDFLAGS} … … 151 148 152 149 templates_p_Procs_Generate_LDADD = -lreporter -lmisc -lomalloc -lfindexec 150 templates_p_Procs_Generate_LDFLAGS = -L${abs_builddir} -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${top_builddir}/misc -L${abs_top_builddir}/../omalloc -L${abs_top_builddir}/../findexec 153 151 154 152 templates/p_Procs.inc: templates/p_Procs_Generate
Note: See TracChangeset
for help on using the changeset viewer.