blob: cc0cb200f6d223b55aff60b703a2eb0d4e7310f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
--- ./Makefile.orig 2003-10-16 04:59:17.000000000 -0300
+++ ./Makefile 2013-11-16 13:19:29.000000000 -0200
@@ -1,9 +1,9 @@
# default flags
-CCFLAGS = -O3 -fomit-frame-pointer
+CCFLAGS = ${OPT}
# my own highly tuned settings
#CC = gcc-3.3.1
-#CCFLAGS = -O3 -fomit-frame-pointer -fforce-addr -funroll-all-loops -fstrict-aliasing -malign-double -fprefetch-loop-arrays -maccumulate-outgoing-args -minline-all-stringops -finline-functions -finline-limit=800 -ffast-math -mno-align-stringops
+OPT = -O3 -fomit-frame-pointer -funroll-all-loops -fstrict-aliasing -fprefetch-loop-arrays -minline-all-stringops -finline-functions -ffast-math
#CCFLAGS += -mfpmath=sse,387 -mmmx -msse -march=pentium3
# develomental flags
@@ -21,4 +21,4 @@
rm -f exmars Mars.so *.o *~
distclean: clean
- rm -f *.da
\ No newline at end of file
+ rm -f *.da
|