Changeset 92d684 in git for Singular/makefile
- Timestamp:
- Aug 10, 2011, 3:57:13 PM (12 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- db45a2a06453f84672a9bd3c4a2c2230cb7fe17d
- Parents:
- cf41549933e3a2f719c447992e836d965e3be351
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-10 15:57:13+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:17:28+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/makefile
rcf4154 r92d684 35 35 ## compiler and linker options 36 36 ## 37 LIBPOLYS_CFLAGS = -I.. -I../libpolys 37 LIBPOLYS_INCLUDES = -I.. -I../libpolys 38 LIBPOLYS_CFLAGS = ${LIBPOLYS_INCLUDES} 38 39 LIBPOLYS_LIBS = -L../factory -L../omalloc -L../libpolys/misc -L../libpolys/reporter -L../libpolys/resources -L../libpolys/coeffs -L../libpolys/polys -lpolys -lcoeffs -lresources -lreporter -lmisc -lfactory -lomalloc 39 40 LIBPOLYS_LIBSG = -L../factory -L../omalloc -L../libpolys/misc -L../libpolys/reporter -L../libpolys/resources -L../libpolys/coeffs -L../libpolys/polys -lpolys_g -lcoeffs_g -lresources_g -lreporter_g -lmisc_g -lfactory -lomalloc_g 40 41 42 43 PYTHON_INCLUDES = `python-config --includes` 44 PYTHON_CFLAGS = `python-config --cflags` 45 PYTHON_LIBS = `python-config --libs` 46 41 47 PIPE = -pipe 42 CFLAGS = -O3 - w -fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS}43 CXXFLAGS = -O3 - w -fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS}48 CFLAGS = -O3 -fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS} 49 CXXFLAGS = -O3 -fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS} 44 50 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 45 CPPFLAGS = -I${srcdir} -I.. -I${includedir} ${LIBPOLYS_CFLAGS}51 CPPFLAGS = -I${srcdir} -I.. -I${includedir} ${LIBPOLYS_INCLUDES} ${PYTHON_INCLUDES} 46 52 DEFS = -DNDEBUG -DOM_NDEBUG 47 53 LDFLAGS = -L${srcdir}/lib … … 52 58 LD_LIBC = -lc 53 59 STATIC_LDFLAGS = -static 54 LIBS = -lm -lsingfac -lsingcf -lntl -lgmp -lreadline -lncurses -lm -lnsl -lomalloc_ndebug 60 LIBS = -lm -lsingfac -lsingcf -lntl -lgmp -lreadline -lncurses -lm -lnsl -lomalloc_ndebug ${PYTHON_LIBS} 55 61 MP_LIBS = -lMPT -lMP -lnsl 56 62
Note: See TracChangeset
for help on using the changeset viewer.