Changeset 7c5f743 in git
- Timestamp:
- Nov 19, 2011, 3:01:59 AM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- cfbfd926d964ae3757235dc9f4f9f63a27e39148
- Parents:
- 584f6b04534bcfa0f21a5d9bfed5be5d5e5ca323
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-19 03:01:59+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-19 03:27:47+01:00
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/Makefile.am
r584f6b0 r7c5f743 175 175 # handle all the generated *.inc 176 176 177 AM_LDFLAGS = -L${ top_builddir}/Singular -L${top_builddir}/numeric -L${top_builddir}/kernel -L${top_builddir}/libpolys/polys -L${top_builddir}/libpolys/coeffs -L${top_builddir}/libpolys/reporter -L${top_builddir}/libpolys/resources -L${top_builddir}/libpolys/misc $(USE_FACTORY) -L${top_builddir}/omalloc177 AM_LDFLAGS = -L${abs_top_builddir}/Singular -L${abs_top_builddir}/numeric -L${abs_top_builddir}/kernel -L${abs_top_builddir}/libpolys/polys -L${abs_top_builddir}/libpolys/coeffs -L${abs_top_builddir}/libpolys/reporter -L${abs_top_builddir}/libpolys/resources -L${abs_top_builddir}/libpolys/misc $(USE_FACTORY) -L${abs_top_builddir}/omalloc 178 178 179 179 noinst_PROGRAMS = gentable2 gentable1 feOpt feOptES feOptTS … … 270 270 271 271 feOpt.inc: feOpt 272 ./feOpt272 ${abs_builddir}/feOpt 273 273 274 274 feOptES.inc: feOptES 275 ./feOptES275 ${abs_builddir}/feOptES 276 276 277 277 feOptTS.inc: feOptTS 278 ./feOptTS278 ${abs_builddir}/feOptTS 279 279 280 280 plural_cmd.inc iparith.inc: gentable1 281 ./gentable1281 ${abs_builddir}/gentable1 282 282 283 283 # fake rule to fix parallel make http://www.gnu.org/s/hello/manual/automake/Multiple-Outputs.html … … 285 285 286 286 mpsr_Tok.inc: gentable2 287 ./gentable2288 287 ${abs_builddir}/gentable2 288 -
libpolys/polys/Makefile.am
r584f6b0 r7c5f743 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${includedir} ${GMP_CFLAGS}13 AM_LDFLAGS = -L${ top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/../omalloc -L${builddir}12 INCLUDES = -I${abs_top_srcdir} -I${abs_top_srcdir}/.. -I${abs_top_builddir} -I${abs_top_builddir}/.. -I${srcdir} -I${includedir} ${GMP_CFLAGS} 13 AM_LDFLAGS = -L${abs_top_builddir}/coeffs -L${abs_top_builddir}/reporter -L${abs_top_builddir}/resources -L${abs_top_builddir}/../omalloc -L${abs_builddir} 14 14 15 15 if ENABLE_P_PROCS_STATIC -
omalloc/Makefile.am
r584f6b0 r7c5f743 1 1 ACLOCAL_AMFLAGS = -I ../m4 2 AM_LDFLAGS = -L${top_builddir}/omalloc -L${top_builddir}/../omalloc3 2 4 3 lib_LTLIBRARIES=libomalloc.la libomalloc_g.la … … 28 27 EXTRA_DIST = omalloc.c omtTestAlloc.c omtTest.h omMmap.c 29 28 30 INCLUDES=-I${ top_srcdir}/.. -I${top_builddir}/..29 INCLUDES=-I${abs_top_srcdir}/.. -I${abs_top_builddir}/.. 31 30 32 31 libomalloc_la_SOURCES=$(SOURCES) $(noinst_HEADERS) … … 56 55 ## Test program 57 56 ## 57 # AM_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc 58 59 58 60 TESTS = omtTest-g omtTest-m omtTest-r 59 61 check_PROGRAMS = $(TESTS) … … 67 69 omtTest_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long 68 70 omtTest_g_LDADD = -lomalloc_g 71 omtTest_g_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc 72 69 73 70 74 # omtTest_m: libomalloc_g.la … … 73 77 omtTest_m_SOURCES = $(OMTTESTSSOURCES) 74 78 omtTest_m_LDADD = -lomalloc_g 79 omtTest_m_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc 75 80 76 81 # omtTest_r: libomalloc.la … … 80 85 omtTest_r_CFLAGS = -O3 81 86 omtTest_r_LDADD = -lomalloc 87 omtTest_r_LDFLAGS = -L${abs_top_builddir}/omalloc -L${abs_top_builddir}/../omalloc 82 88
Note: See TracChangeset
for help on using the changeset viewer.