summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorMichael Brown2005-04-17 01:33:52 +0200
committerMichael Brown2005-04-17 01:33:52 +0200
commit9c814cb1234170c447b0b4e7b7d78adc721d29f4 (patch)
tree01b84ecbc86096a3e2428a3f05d21f809be2b811 /src/Makefile
parentImproved building of debugging objects. You can now specify a "DEBUG=" (diff)
downloadipxe-9c814cb1234170c447b0b4e7b7d78adc721d29f4.tar.gz
ipxe-9c814cb1234170c447b0b4e7b7d78adc721d29f4.tar.xz
ipxe-9c814cb1234170c447b0b4e7b7d78adc721d29f4.zip
Use the correct case for -Ddebug_<object>
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
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 $@