Changeset 468b57 in git
- Timestamp:
- May 10, 2011, 4:41:49 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- 69181b37612b63bbfd20ec69a9c0e590772cae58
- Parents:
- 650f2d813320751a4d90da4b788c6d807b2ff833
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-05-10 16:41:49+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:43+01:00
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/CMakeLists.txt
r650f2d8 r468b57 318 318 if( WITH_SINGULAR ) 319 319 # define libraries 320 message(STATUS "Compiling factory for Singular: creating lib singcf.a")320 message(STATUS "Compiling factory for Singular: creating libfactory.a") 321 321 add_library(singcf ${basefactory_srcs} ${singfactory_srcs}) 322 322 set_target_properties(singcf PROPERTIES COMPILE_DEFINITIONS "${ADD_DEFS}") 323 323 add_dependencies(singcf ${OMALLOC_TARGET} ${NTL_TARGET}) 324 324 else( WITH_SINGULAR ) 325 message(STATUS "Disabled creation of lib singcf.a")325 message(STATUS "Disabled creation of libfactory.a") 326 326 endif( WITH_SINGULAR ) 327 327 -
factory/GNUmakefile.in
r650f2d8 r468b57 495 495 all: $(alltargets) 496 496 497 cf: factoryconf.h factory.h lib singcf.a libsingcf_g.a497 cf: factoryconf.h factory.h libfactory.a libfactory_g.a 498 498 499 499 mem: libcfmem.a … … 502 502 # - explicit targets. 503 503 # 504 lib singcf.a: $(factoryobj)504 libfactory.a: $(factoryobj) 505 505 $(AR) $(ARFLAGS) $@ $^ 506 506 $(RANLIB) $@ 507 507 508 lib singcf_g.a: $(factorygobj)508 libfactory_g.a: $(factorygobj) 509 509 $(AR) $(ARFLAGS) $@ $^ 510 510 $(RANLIB) $@ 511 511 512 lib singcf_p.a: $(factorypobj)512 libfactory_p.a: $(factorypobj) 513 513 $(AR) $(ARFLAGS) $@ $^ 514 514 $(RANLIB) $@ … … 637 637 install install-libsingular: $(installtargets) 638 638 639 install_all: install lib singcf_p.a640 -$(INSTALL_DATA) lib singcf_p.a $(libdir)/libsingcf_p.a639 install_all: install libfactory_p.a 640 -$(INSTALL_DATA) libfactory_p.a $(libdir)/libfactory_p.a 641 641 642 642 install-nolns: install … … 647 647 $(MKINSTALLDIRS) $(templatedir) 648 648 $(INSTALL_DATA) $(libfactory) $(libdir)/$(libfactory) 649 -$(INSTALL_DATA) lib singcf_g.a $(libdir)/libsingcf_g.a650 -$(INSTALL_DATA) lib singcf_p.a $(libdir)/libsingcf_p.a649 -$(INSTALL_DATA) libfactory_g.a $(libdir)/libfactory_g.a 650 -$(INSTALL_DATA) libfactory_p.a $(libdir)/libfactory_p.a 651 651 $(INSTALL_DATA) factory.h $(includedir)/factory.h 652 652 $(INSTALL_DATA) cf_gmp.h $(includedir)/cf_gmp.h … … 696 696 -rm -f $(includedir)/factory.h 697 697 -rm -f $(libdir)/$(libfactory) 698 -rm -f $(libdir)/lib singcf_g.a699 -rm -f $(libdir)/lib singcf_p.a698 -rm -f $(libdir)/libfactory_g.a 699 -rm -f $(libdir)/libfactory_p.a 700 700 -rmdir $(templatedir) 701 701 -rmdir $(includedir) … … 734 734 # 735 735 clean: ftestclean 736 -rm -f lib singcf.a libcfmem.a libsingcf_g.a libsingcf_p.a \736 -rm -f libfactory.a libcfmem.a libfactory_g.a libfactory_p.a \ 737 737 $(ftestexec) gengftables test_install \ 738 738 factoryconf.h factory.h *.o *.og *.op *.d *.dtmp -
factory/Makefile.am
r650f2d8 r468b57 1 lib_LIBRARIES = lib singcf.a libsingcf_g.a1 lib_LIBRARIES = libfactory.a libfactory_g.a 2 2 3 3 # factory source files … … 75 75 singext.cc 76 76 77 lib singcf_a_SOURCES = $(SOURCES)78 lib singcf_g_a_SOURCES = $(SOURCES)77 libfactory_a_SOURCES = $(SOURCES) 78 libfactory_g_a_SOURCES = $(SOURCES) 79 79 80 80 # factory header files -
factory/configure.in
r650f2d8 r468b57 274 274 # 275 275 if test "x$with_Singular" = xyes; then 276 libfactory=lib singcf.a276 libfactory=libfactory.a 277 277 278 278 factorysrc='$(basefactorysrc) $(singfactorysrc)' -
libpolys/coeffs/Makefile.am
r650f2d8 r468b57 46 46 test_g_SOURCES = test.cc 47 47 48 test_LDADD = -lcoeffs ${GMP_LIBS} ${NTL_LIBS} -lresources -lreporter -lmisc -l singcf-lomalloc49 test_g_LDADD = -lcoeffs_g ${GMP_LIBS} ${NTL_LIBS} -lresources_g -lreporter_g -lmisc_g -l singcf_g -lomalloc_debug48 test_LDADD = -lcoeffs ${GMP_LIBS} ${NTL_LIBS} -lresources -lreporter -lmisc -lfactory -lomalloc 49 test_g_LDADD = -lcoeffs_g ${GMP_LIBS} ${NTL_LIBS} -lresources_g -lreporter_g -lmisc_g -lfactory_g -lomalloc_debug 50 50 51 51 -
libpolys/tests/Makefile.am
r650f2d8 r468b57 27 27 rings_test_LDFLAGS = $(polys_test_LDFLAGS) 28 28 29 coeffs_test_LDADD = -lcoeffs_g ${GMP_LIBS} -lresources_g -lreporter_g -lmisc_g -l singcf_g -lomalloc_debug29 coeffs_test_LDADD = -lcoeffs_g ${GMP_LIBS} -lresources_g -lreporter_g -lmisc_g -lfactory_g -lomalloc_debug 30 30 polys_test_LDADD = -lpolys_g ${USEPPROCSDYNAMICLD} $(coeffs_test_LDADD) 31 31 rings_test_LDADD = $(polys_test_LDADD)
Note: See TracChangeset
for help on using the changeset viewer.