david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Add "net" directory.

Avoid including debug information in bin/%.s output, since the whole
point is to have easy-to-read assembler.
This commit is contained in:
Michael Brown 2006-04-24 15:20:01 +00:00
parent 6209bd873a
commit e323d1a29b
1 changed files with 2 additions and 1 deletions

View File

@ -119,7 +119,7 @@ RULE_c = $(COMPILE_c) -c $< -o $@
RULE_c_to_dbg.o = $(COMPILE_c) -Ddebug_$(OBJECT) -c $< -o $@
RULE_c_to_dbg2.o = $(COMPILE_c) -Ddebug_$(OBJECT)=2 -c $< -o $@
RULE_c_to_c = $(COMPILE_c) -E -c $< > $@
RULE_c_to_s = $(COMPILE_c) -S -c $< -o $@
RULE_c_to_s = $(COMPILE_c) -S -g0 -c $< -o $@
PREPROCESS_S = $(CPP) $(CFLAGS) $(CFLAGS_S) $(OBJ_CFLAGS)
ASSEMBLE_S = $(AS) $(ASFLAGS)
@ -132,6 +132,7 @@ DEBUG_TARGETS += dbg2.o dbg.o c s
#
SRCDIRS += core
SRCDIRS += proto
SRCDIRS += net
SRCDIRS += proto/uip
#SRCDIRS += image
SRCDIRS += drivers/bus