Changeset 8872ef in git
- Timestamp:
- May 23, 2011, 6:15:06 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- e14941cb3862f30b460fab62e0c485f193ab781a
- Parents:
- 6b61be3f07f87c754ee15d7bb06800f58b963592
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-23 18:15:06+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:48+01:00
- Location:
- libpolys
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/Makefile.am
r6b61be r8872ef 38 38 39 39 40 if ENABLE_FACTORY 41 USE_FACTORY = -L${top_builddir}/../factory 42 else 43 USE_FACTORY = 44 endif 40 45 41 46 ## for testing... 42 AM_LDFLAGS = -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/misc -L${top_builddir}/../factory-L${top_builddir}/../omalloc47 AM_LDFLAGS = -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/misc ${USE_FACTORY} -L${top_builddir}/../omalloc 43 48 44 check_PROGRAMS = test test-g45 49 46 test_SOURCES = test.cc 47 test_g_SOURCES = test.cc 50 TESTS = test test-g 51 check_PROGRAMS = $(TESTS) 52 53 test_SOURCES = test.cc gftables 54 test_g_SOURCES = test.cc gftables 48 55 49 56 test_LDADD = -lcoeffs ${GMP_LIBS} ${NTL_LIBS} -lresources -lreporter -lmisc ${FACTORY_LIBS} -lomalloc … … 61 68 test_CPPFLAGS = -DNDEBUG -DOM_NDEBUG -DHAVE_CONFIG_H 62 69 test_g_CPPFLAGS = -DHAVE_CONFIG_H 70 71 gftables: ${top_srcdir}/../factory/gftables 72 ln -snf ${top_srcdir}/../factory/gftables ${builddir} -
libpolys/tests/Makefile.am
r6b61be r8872ef 1 1 CXXTEMPLFLAGS = -O0 --no-exceptions ## -fno-implicit-templates 2 2 3 if ENABLE_FACTORY 4 USE_FACTORY = -L${top_builddir}/../factory 5 else 6 USE_FACTORY = 7 endif 8 3 9 ## for testing... 4 AM_LDFLAGS = -L${top_builddir}/polys -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/misc -L${top_builddir}/../factory-L${top_builddir}/../omalloc10 AM_LDFLAGS = -L${top_builddir}/polys -L${top_builddir}/coeffs -L${top_builddir}/reporter -L${top_builddir}/resources -L${top_builddir}/misc ${USE_FACTORY} -L${top_builddir}/../omalloc 5 11 6 12 … … 18 24 check_PROGRAMS = $(TESTS) 19 25 20 simple_test_SOURCES = simple_test_runner.cpp gftables26 simple_test_SOURCES = simple_test_runner.cpp 21 27 coeffs_test_SOURCES = coeffs_test_runner.cpp gftables 22 28 polys_test_SOURCES = polys_test_runner.cpp gftables 23 29 rings_test_SOURCES = rings_test_runner.cpp gftables 30 24 31 25 32
Note: See TracChangeset
for help on using the changeset viewer.