JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
fixed crashing bug in move_dust() (bounds checking wasn't right)
[vor.git] / Makefile
index 3d5716c..dacecb6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@
 DATA_PREFIX := /usr/share/vor
 PROGRAM_PREFIX := /usr/games/bin
 
-CFLAGS := -Wall -O3
+CFLAGS := -ggdb
 LDFLAGS := 
 
 paths := -DDATA_PREFIX=\"$(DATA_PREFIX)\"
@@ -58,8 +58,8 @@ data: $(graphics)
 program: vor
 
 %.o: %.c
-       @echo compiling $@ from $<
-       @$(CC) $(cflags) -c -o $@ $<
+       #@echo compiling $@ from $<
+       $(CC) $(cflags) -c -o $@ $<
 
 $(my_objects): config.h
 
@@ -85,7 +85,7 @@ sprite.o: sprite.h common.h
 
 vor: $(objects)
        @echo linking $@ from $^
-       @$(CC) $(ldflags) -o $@ $^ $(LIBRARIES)
+       @$(CC) $^ $(ldflags) -o $@
 
 include gfx.mk