mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
ffcc3f5ecf
- Simplify Makefile
22 lines
848 B
Plaintext
22 lines
848 B
Plaintext
--- ./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
|