Changeset c08834 in git
- Timestamp:
- Jun 9, 2010, 12:38:40 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 91a305857a5f4e3902521d2874008067469e6d60
- Parents:
- 72f476ba29bee4c07a8d6d6dba881205187ca8ae
- git-author:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2010-06-09 12:38:40+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:06+01:00
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
coeffs/Makefile.in
r72f476b rc08834 34 34 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} -g 35 35 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 36 CPPFLAGS = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ -I${srcdir}/../ output/ -L${srcdir}/../output/ -L${libdir} -lgmp36 CPPFLAGS = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ -I${srcdir}/../reporter/ -L${srcdir}/../reporter/ -L${libdir} -lgmp 37 37 DEFS = -Dix86_Linux -DHAVE_CONFIG_H -DLDEBUG -DDEBUG -DOM_DEBUG -DHAVE_ASSUME 38 38 … … 95 95 96 96 test: test.cc libcoeffs.a 97 ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} test.cc -L. -I. -lcoeffs -o test -lomalloc -l output97 ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} test.cc -L. -I. -lcoeffs -o test -lomalloc -lreporter -
coeffs/ffields.cc
r72f476b rc08834 7 7 */ 8 8 9 #include <auxiliary.h> 9 10 #include <string.h> 10 11 #include "coeffs.h" 11 12 #include <mylimits.h> 12 #include <output.h>13 13 #include <omalloc.h> 14 #include <reporter.h> 14 15 #include "numbers.h" 15 16 #include "ffields.h" 16 #include <aux.h>17 17 #include <feFopen.h> 18 18 -
coeffs/gnumpc.cc
r72f476b rc08834 18 18 #include "gnumpfl.h" 19 19 #include "mpr_complex.h" 20 #include " output.h"20 #include "reporter.h" 21 21 #include "omalloc.h" 22 22 -
coeffs/gnumpfl.cc
r72f476b rc08834 11 11 #include "config.h" 12 12 #include "coeffs.h" 13 #include <output.h>14 13 #include <omalloc.h> 14 #include <reporter.h> 15 15 #include "numbers.h" 16 16 #include "modulop.h" -
coeffs/longrat.cc
r72f476b rc08834 47 47 #include "config.h" 48 48 #include "coeffs.h" 49 #include " output.h"49 #include "reporter.h" 50 50 #include "omalloc.h" 51 51 #include "numbers.h" -
coeffs/longrat0.cc
r72f476b rc08834 11 11 #include <string.h> 12 12 #include "config.h" 13 #include " output.h"13 #include "reporter.h" 14 14 #include "coeffs.h" 15 15 #include "omalloc.h" -
coeffs/modulop.cc
r72f476b rc08834 11 11 #include <omalloc.h> 12 12 #include "coeffs.h" 13 #include " output.h"13 #include "reporter.h" 14 14 #include "numbers.h" 15 15 #include "longrat.h" -
coeffs/mpr_complex.cc
r72f476b rc08834 15 15 //#ifdef HAVE_MPR 16 16 #include "coeffs.h" 17 #include " output.h"17 #include "reporter.h" 18 18 #include "omalloc.h" 19 19 #include "numbers.h" -
coeffs/numbers.cc
r72f476b rc08834 11 11 #include <stdlib.h> 12 12 #include "coeffs.h" 13 #include " output.h"13 #include "reporter.h" 14 14 #include "omalloc.h" 15 15 #include "numbers.h" -
coeffs/rmodulo2m.cc
r72f476b rc08834 13 13 #include <mylimits.h> 14 14 #include "coeffs.h" 15 #include " output.h"15 #include "reporter.h" 16 16 #include "omalloc.h" 17 17 #include "numbers.h" -
coeffs/rmodulon.cc
r72f476b rc08834 13 13 #include <mylimits.h> 14 14 #include "coeffs.h" 15 #include " output.h"15 #include "reporter.h" 16 16 #include "omalloc.h" 17 17 #include "numbers.h" -
coeffs/shortfl.cc
r72f476b rc08834 12 12 #include <string.h> 13 13 #include "coeffs.h" 14 #include " output.h"14 #include "reporter.h" 15 15 #include "numbers.h" 16 16 #include "longrat.h" -
coeffs/test.cc
r72f476b rc08834 4 4 #include <coeffs.h> 5 5 #include <numbers.h> 6 #include < output.h>6 #include <reporter.h> 7 7 #include <omalloc.h> 8 8 -
misc/aux.h
r72f476b rc08834 32 32 33 33 #ifndef NULL 34 #define NULL ( (void *)(0))34 #define NULL (0) 35 35 #endif 36 36
Note: See TracChangeset
for help on using the changeset viewer.