From 9c814cb1234170c447b0b4e7b7d78adc721d29f4 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Sat, 16 Apr 2005 23:33:52 +0000 Subject: [PATCH] Use the correct case for -Ddebug_ --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 691f2c48..59794295 100644 --- a/src/Makefile +++ b/src/Makefile @@ -112,7 +112,7 @@ $(BIN)/%.flags : # COMPILE_c = $(CC) $(CFLAGS) $(CFLAGS_c) $(OBJ_CFLAGS) RULE_c = $(COMPILE_c) -c $< -o $@ -RULE_c_to_dbg.o = $(COMPILE_c) -DDEBUG_$(OBJECT) -c $< -o $@ +RULE_c_to_dbg.o = $(COMPILE_c) -Ddebug_$(OBJECT) -c $< -o $@ RULE_c_to_c = $(COMPILE_c) -E -c $< > $@ RULE_c_to_s = $(COMPILE_c) -S -c $< -o $@