Changeset fbb0173 in git
- Timestamp:
- Aug 23, 2011, 7:11:06 PM (12 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- e4fe2b40ac408d4d74d81461cc23af8a30ddc204
- Parents:
- 7b15f9d6e8069325ddf6e279925bb0ff0d3f4a94
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-23 19:11:06+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:25+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/makefile
r7b15f9d rfbb0173 49 49 50 50 PIPE = -pipe 51 CFLAGS = -O3 - fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS}52 CXXFLAGS = -O3 - fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS}51 CFLAGS = -O3 -Wall -fomit-frame-pointer ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS} 52 CXXFLAGS = -O3 -Wall -fomit-frame-pointer --no-rtti ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS} 53 53 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 54 54 CPPFLAGS = -I${srcdir} -I.. -I${includedir} ${LIBPOLYS_INCLUDES} ${PYTHON_INCLUDES} 55 DEFS = -DNDEBUG -DOM_NDEBUG 55 DEFS = -DNDEBUG -DOM_NDEBUG -DHAVE_SINGULAR 56 56 LDFLAGS = -L${srcdir}/lib 57 57 LD_DYN_FLAGS = -ldl -rdynamic … … 223 223 OBJP := $(OBJP) $(STATIC_SOURCES:.cc=.op) 224 224 225 all: libSingular_g.a libSingular.a Singularg Singular 226 227 Singularg: tesths.og libSingular_g.a 228 $(CXX) ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} tesths.og -o $@ -L. -lSingular_g -L../kernel -lkernel_g ${LIBPOLYS_LIBSG} 225 all: libSingular_g.a libSingular.a Singular Singularg 229 226 230 227 Singular: tesths.o libSingular.a 231 228 $(CXX) ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} tesths.o -o $@ -L. -lSingular -L../kernel -lkernel ${LIBPOLYS_LIBS} 229 230 Singularg: tesths.og libSingular_g.a 231 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGSG} ${CPPFLAGSG} ${DEFSG} tesths.og -o $@ -L. -lSingular_g -L../kernel -lkernel_g ${LIBPOLYS_LIBSG} 232 232 233 233 … … 293 293 ## 294 294 295 CCG = ${CC} 296 CXXG = ${CXX} - Wall295 CCG = ${CC} -g 296 CXXG = ${CXX} -g 297 297 CXXM = gcc -MM -MG -DGENERATE_DEPEND 298 298 CCM = gcc -MM -MG -DGENERATE_DEPEND 299 299 300 CFLAGSG = -g ${PIPE} ${LIBPOLYS_CFLAGS} 301 CXXFLAGSG = -g ${PIPE} ${LIBPOLYS_CFLAGS} 302 DEFSG = 300 DEFSG = -DHAVE_SINGULAR 301 302 CFLAGSG = -Wall ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS} 303 CXXFLAGSG = -Wall ${PIPE} ${LIBPOLYS_CFLAGS} ${PYTHON_CFLAGS} 303 304 304 305 ## … … 328 329 ## 329 330 330 CCP = ${CC} 331 CXXP = ${CXX} 332 333 CFLAGSP = - g -pg -O ${PIPE} ${LIBPOLYS_CFLAGS}334 CXXFLAGSP = - g -pg -O ${PIPE} ${LIBPOLYS_CFLAGS}331 CCP = ${CC} -g -pg 332 CXXP = ${CXX} -g -pg 333 334 CFLAGSP = -O ${PIPE} ${LIBPOLYS_CFLAGS} 335 CXXFLAGSP = -O ${PIPE} ${LIBPOLYS_CFLAGS} 335 336 DEFSP = 336 337
Note: See TracChangeset
for help on using the changeset viewer.