stage4/generate_cc/Makefile
changeset 40 873a5b60a7ea
parent 36 4d7fd441fbc3
--- a/stage4/generate_cc/Makefile	Wed Jul 11 09:53:27 2007 +0200
+++ b/stage4/generate_cc/Makefile	Thu Jul 12 11:24:32 2007 +0200
@@ -1,9 +1,5 @@
 # include the system specific Makefile
-#include ../../../../Makefile.$(shell uname)
-
-
-
-
+include ../../Makefile.$(shell uname)
 
 default: all
 
@@ -12,17 +8,9 @@
 clean:
 	-rm -f *.o */*.o Makefile.depend
 
-#get warnings, debugging information and optimization
-CXXFLAGS  = -Wall -pedantic -Wpointer-arith -Wwrite-strings
-# CXXFLAGS += -Werror
-
-CXXFLAGS += -ggdb -O3 -funroll-loops
-# Note: if the optimizer crashes, we'll leave out the -O3 for those files
-
+CXXFLAGS += -Wno-unused
 CXXFLAGS += -I. -I../* -I../../absyntax
 
-
-
 #how to make things from other directories if they are missing
 ../% /%:
 	$(MAKE) -C $(@D) $(@F)