From ac2bdee396bb738b71de5447e1940d7b585205a3 Mon Sep 17 00:00:00 2001 From: Timo Kokkonen Date: Mon, 5 Apr 2010 19:41:40 +0300 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- 2.44.0