From: Roland Hieber Date: Wed, 13 Jan 2010 02:24:07 +0000 (+0100) Subject: removed unneeded stuff from makefile and added debug cflags X-Git-Url: https://git.rohieb.name/MicroTrace.git/commitdiff_plain/f050c860f0e0897148a6476d5c07b8532808c7f7?hp=a064dd2f4e7b2a911ed46dd1499199bb4301affd removed unneeded stuff from makefile and added debug cflags --- diff --git a/Makefile b/Makefile index 2223440..a9c458e 100644 --- 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