Changeset 76944d in git
- Timestamp:
- Aug 10, 2011, 2:45:36 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 4a48c47615e94a3c63018715abea80de7e53d76a
- Parents:
- 9b01b109e08780f8e6f510609056f70e9557663e
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-08-10 14:45:36+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:17:26+01:00
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/makefile
r9b01b1 r76944d 230 230 distclean: clean 231 231 -rm -f *~ .\#* 232 -rm -f mod2.hMakefile TAGS* tags config.status config.cache config.log232 -rm -f Makefile TAGS* tags config.status config.cache config.log 233 233 234 234 srcclean: … … 242 242 @echo "bison, perl and autoconf" 243 243 244 #dep. 245 feOpt.h: feOpt.inc 246 misc_ip.cc: feOpt.h 247 244 248 ## 245 249 ## miscellanous targets … … 336 340 ## 337 341 338 %.dd: %.cc mod2.h342 %.dd: %.cc 339 343 echo $(@:.dd=.og) $(@:.dd=.op) " " \\ > $@ 340 344 $(CXXM) -DGENTABLE ${CPPFLAGS} ${DEFSG} $< >> $@ 341 345 342 %.d: %.c mod2.h346 %.d: %.c 343 347 echo $(@:.d=.og) $(@:.d=.op) " " \\ > $@ 344 348 $(CCM) ${CPPFLAGS} ${DEFSG} $< >> $@ 345 349 346 depend: $(CXXSOURCES:.cc=.dd) $(ESOURCES:.cc=.dd) $(CSOURCES:.c=.d) mod2.h350 depend: $(CXXSOURCES:.cc=.dd) $(ESOURCES:.cc=.dd) $(CSOURCES:.c=.d) 347 351 cat *.d *.dd >depend 348 352 … … 355 359 # test: test.o 356 360 357 test.o: test.cc mod2.hfeOpt.inc361 test.o: test.cc feOpt.inc 358 362 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFSG} -c $< -o $@ 359 363 360 feOpt.inc: feOpt.cc mod2.h364 feOpt.inc: feOpt.cc 361 365 $(CXX) $(CXXFLAGS) -DGENERATE_OPTION_INDEX ${CPPFLAGS} feOpt.cc -o feOpt 362 366 ./feOpt 363 367 /bin/rm -f feOpt feOpt.exe 364 368 365 feOptES.inc: feOpt.cc mod2.h369 feOptES.inc: feOpt.cc 366 370 $(CXX) $(CXXFLAGS) -DGENERATE_OPTION_INDEX ${CPPFLAGS} -DESINGULAR -I../kernel feOpt.cc -o feOptES 367 371 ./feOptES 368 372 rm -f feOptES feOptES.exe 369 373 370 feOptTS.inc: feOpt.cc mod2.h374 feOptTS.inc: feOpt.cc 371 375 $(CXX) $(CXXFLAGS) -DGENERATE_OPTION_INDEX ${CPPFLAGS} -DTSINGULAR -I../kernel feOpt.cc -o feOptTS 372 376 ./feOptTS 373 377 rm -f feOptTS feOptTS.exe 374 378 375 iparith.inc: gentable.cc grammar.h tok.h table.h mod2.h379 iparith.inc: gentable.cc grammar.h tok.h table.h 376 380 ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} gentable.cc \ 377 381 -o gentable1 -
Singular/misc_ip.cc
r9b01b1 r76944d 357 357 #include <polys/polys.h> 358 358 #endif 359 #include <Singular/version.h>360 359 361 360 #include <Singular/static.h> … … 837 836 #endif 838 837 StringAppend("random=%d\n",siRandomStart); 839 StringAppend("\tCC=%s,\n\tCXX=%s"838 // StringAppend("\tCC=%s,\n\tCXX=%s" 840 839 #ifdef __GNUC__ 841 "(" __VERSION__ ")"842 #endif 843 "\n",CC,CXX);840 // "(" __VERSION__ ")" 841 #endif 842 // "\n",CC,CXX); 844 843 feStringAppendResources(0); 845 844 feStringAppendBrowsers(0);
Note: See TracChangeset
for help on using the changeset viewer.