Changeset b9cf41 in git
- Timestamp:
- Sep 6, 2011, 7:36:47 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'cdfcdb8287f66bc6070028082cbbc6eff10e609b')
- Children:
- 08e15e7aa667fe0a2a40175b200adac4ea0592ca
- Parents:
- f65f1bb59e9fdf035474a0abb3c1d9c791cfc2c9
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-09-06 19:36:47+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:32+01:00
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rf65f1b rb9cf41 8 8 endif 9 9 10 PACKAGES=$(ALLOC) $(USE_FACTORY) libpolys kernel Singular10 PACKAGES=$(ALLOC) $(USE_FACTORY) libpolys numeric kernel Singular 11 11 12 12 SUBDIRS=$(PACKAGES) 13 13 14 TESTDIRS= libpolys kernel Singular14 TESTDIRS=$(ALLOC) libpolys kernel Singular -
Singular/makefile
rf65f1b rb9cf41 233 233 234 234 Singular: tesths.o libSingular.a 235 $(CXX) ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} tesths.o -o $@ -L. -lSingular -L../kernel -lkernel ${LIBPOLYS_LIBS}235 $(CXX) ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} tesths.o -o $@ -L. -lSingular -L../kernel -lkernel -L../numeric -lnumeric ${LIBPOLYS_LIBS} 236 236 237 237 Singularg: tesths.og libSingular_g.a 238 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGSG} ${DEFSG} tesths.og -o $@ -L. -lSingular_g -L../kernel -lkernel_g ${LIBPOLYS_LIBSG}238 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGSG} ${DEFSG} tesths.og -o $@ -L. -lSingular_g -L../kernel -lkernel_g -L../numeric -lnumeric_g ${LIBPOLYS_LIBSG} 239 239 240 240 … … 420 420 421 421 test: test.o libSingular.a 422 $(CXX) ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} $< -o $@ -L. -lSingular -L../kernel -lkernel ${LIBPOLYS_LIBS}422 $(CXX) ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} $< -o $@ -L. -lSingular -L../kernel -lkernel -L../numeric -lnumeric ${LIBPOLYS_LIBS} 423 423 424 424 # My headers test … … 428 428 429 429 testg: test.og libSingular_g.a 430 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFSG} $< -o $@ -L. -lSingular_g -L../kernel -lkernel_g ${LIBPOLYS_LIBSG}430 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFSG} $< -o $@ -L. -lSingular_g -L../kernel -lkernel_g -L../numeric -lnumeric_g ${LIBPOLYS_LIBSG} -
configure.ac
rf65f1b rb9cf41 5 5 AC_PROG_CC 6 6 AC_PROG_CXX 7 AC_PROG_RANLIB 8 7 9 SING_CHECK_FACTORY 8 10 … … 16 18 AC_CONFIG_SUBDIRS(libpolys) 17 19 20 AC_CONFIG_FILES([numeric/Makefile]) 21 18 22 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.