From f050c860f0e0897148a6476d5c07b8532808c7f7 Mon Sep 17 00:00:00 2001 From: Roland Hieber Date: Wed, 13 Jan 2010 03:24:07 +0100 Subject: [PATCH] removed unneeded stuff from makefile and added debug cflags --- Makefile | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) 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 -- 2.20.1