From: Timo Kokkonen Date: Mon, 5 Apr 2010 16:41:40 +0000 (+0300) Subject: Makefile: rename debug target to obey naming convention X-Git-Url: http://git.itanic.dy.fi/?p=sdl-planets;a=commitdiff_plain;h=ac2bdee396bb738b71de5447e1940d7b585205a3 Makefile: rename debug target to obey naming convention The main target is called sdl-planet, so the debug target should be called then as debug-planet. Signed-off-by: Timo Kokkonen --- diff --git a/Makefile b/Makefile index c4c7652..a8fe9c8 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ PLANET_DEBUG_OBJS= $(patsubst %.o,%-debug.o,$(PLANET_OBJS)) sdl-planet: $(PLANET_OBJS) gcc $(LIBS) -o $@ $(PLANET_OBJS) -debug-planets: $(PLANET_DEBUG_OBJS) +debug-planet: $(PLANET_DEBUG_OBJS) gcc $(LIBS) -o $@ $(PLANET_DEBUG_OBJS) -DDEBUG .c.o: