X-Git-Url: https://jasonwoof.com/gitweb/?p=vor.git;a=blobdiff_plain;f=Makefile;h=dacecb6d471f33d52ea2f081c69bcb13575e7988;hp=6c0356ac29a0d5983cf37922edcddba975a96846;hb=badd0f9bfc6dad829073e606c1953572ece1b06b;hpb=7981a2b8d152e6372aea8191f8c2197f866a450b diff --git a/Makefile b/Makefile index 6c0356a..dacecb6 100644 --- 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 $@ $^ + @$(CC) $^ $(ldflags) -o $@ include gfx.mk