aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6b99f89..b8f7212 100644
--- a/Makefile
+++ b/Makefile
@@ -28,16 +28,16 @@ OBJ = $(c_sources:.c=.o)
#Uncomment this if you want to do some profiling/debugging
#PG = -g -pg
-PG = -fomit-frame-pointer
+PG = -g -fomit-frame-pointer
-# Optimize flag. 3 is about as high as you can sanely go with GCC3.2.
-OPTIM = -O3
+# Optimize flag.
+OPTIM = -O2
# These flags are pretty much mandatory
REQUIRED = -DNDEBUG -DINLINE=inline
#pick your architecture
-ARCH = -march=pentium
+ARCH = -march=native
#Possible x86 architectures
#gcc3.2 => i386, i486, i586, i686, pentium, pentium-mmx
# pentiumpro, pentium2, pentium3, pentium4, k6, k6-2, k6-3,
@@ -60,7 +60,7 @@ CC_SWITCHES = $(OPTIM) $(REQUIRED) $(ARCH) $(PG) $(TWEAKS) $(WARNINGS) $(NEW_02L
PGM = toolame
-LIBS = -lm
+LIBS = -lm -lzmq
#nick burch's OS/2 fix gagravarr@SoftHome.net
UNAME = $(shell uname)