removed unneeded stuff from makefile and added debug cflags
authorRoland Hieber <rohieb@yoda.(none)>
Wed, 13 Jan 2010 02:24:07 +0000 (03:24 +0100)
committerRoland Hieber <rohieb@yoda.(none)>
Wed, 13 Jan 2010 02:24:07 +0000 (03:24 +0100)
Makefile

index 2223440..a9c458e 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@
 all: MicroTrace
 
 CC = g++ 
-CFLAGS = -O3 -Wall
+CFLAGS = -O3 -Wall -g -O0
 
 OBJ = MicroTrace.o\
       Vec3f.o\
@@ -15,12 +15,7 @@ OBJ = MicroTrace.o\
 %.o: %.cxx *.hxx
        $(CC) $(CFLAGS) -c $< -o $@
 
-%.a:
-       ar r $@ $<
-
-
-
 MicroTrace: $(OBJ)
 
 clean: 
-       rm *.o *.a MicroTrace
+       rm *.o MicroTrace
This page took 0.02858 seconds and 4 git commands to generate.