diff options
author | Michael Brown | 2005-04-17 01:33:52 +0200 |
---|---|---|
committer | Michael Brown | 2005-04-17 01:33:52 +0200 |
commit | 9c814cb1234170c447b0b4e7b7d78adc721d29f4 (patch) | |
tree | 01b84ecbc86096a3e2428a3f05d21f809be2b811 /src/Makefile | |
parent | Improved building of debugging objects. You can now specify a "DEBUG=" (diff) | |
download | ipxe-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/Makefile | 2 |
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 $@ |