Changeset c4e319 in git
- Timestamp:
- Sep 18, 2014, 6:20:27 PM (9 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- a4771e1b7535535946d3bd424ce5c97bd0866119
- Parents:
- 49d2b5a60475c4c6d2d66343db6babe5c5cc32ca
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-09-18 18:20:27+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-09-23 20:08:14+02:00
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/Makefile.am
r49d2b5 rc4e319 282 282 283 283 test_SOURCES = test.cc 284 test_LDADD = libfactory.la ../resources/libresources.la284 test_LDADD = libfactory.la $(libfactory_la_LIBADD) 285 285 286 286 #################################################### -
libpolys/coeffs/Makefile.am
r49d2b5 rc4e319 38 38 39 39 test_SOURCES = test.cc 40 test_LDADD = libcoeffs.la 40 test_LDADD = libcoeffs.la $(libcoeffs_la_LIBADD) -
libpolys/misc/Makefile.am
r49d2b5 rc4e319 7 7 8 8 libmisc_la_LIBADD = libintvec.la 9 ## ${top_builddir}/../omalloc/libomalloc.la ${top_builddir}/../resources/libresources.la10 9 11 10 ## libmisc_la_LDFLAGS = -release ${PACKAGE_VERSION} -
libpolys/polys/Makefile.am
r49d2b5 rc4e319 123 123 check_PROGRAMS = $(TESTS) 124 124 125 test_LDADD=libpolys.la ../../resources/libresources.la ../../omalloc/libomalloc.la 125 test_LDADD=libpolys.la \ 126 ${top_builddir}/reporter/libreporter.la ${top_builddir}/misc/libmisc.la \ 127 $(FACTORY_LIBS) $(RESOURCES_LIBS) $(OMALLOC_LIBS) \ 128 $(FLINT_LIBS) $(GMP_LIBS) $(NTL_LIBS) 129 126 130 test_SOURCES=test.cc 127 131 -
libpolys/tests/Makefile.am
r49d2b5 rc4e319 18 18 nodist_rings_test_SOURCES = rings_test_runner.cpp 19 19 20 coeffs_test_LDADD = ${top_builddir}/coeffs/libcoeffs.la 21 polys_test_LDADD = ${top_builddir}/polys/libpolys.la ../../resources/libresources.la ../../omalloc/libomalloc.la 20 coeffs_test_LDADD = ${top_builddir}/coeffs/libcoeffs.la \ 21 ${top_builddir}/reporter/libreporter.la ${top_builddir}/misc/libmisc.la \ 22 $(FACTORY_LIBS) $(RESOURCES_LIBS) $(OMALLOC_LIBS) \ 23 $(FLINT_LIBS) $(GMP_LIBS) $(NTL_LIBS) 24 25 polys_test_LDADD = ${top_builddir}/polys/libpolys.la $(coeffs_test_LDADD) 22 26 rings_test_LDADD = $(polys_test_LDADD) 23 27
Note: See TracChangeset
for help on using the changeset viewer.