david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Use the correct case for -Ddebug_<object>

This commit is contained in:
Michael Brown 2005-04-16 23:33:52 +00:00
parent a666eb34b5
commit 9c814cb123
1 changed files with 1 additions and 1 deletions

View File

@ -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 $@