From: Michael Brown Date: Mon, 24 Apr 2006 15:20:01 +0000 (+0000) Subject: Add "net" directory. X-Git-Tag: v0.9.3~1500 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e323d1a29b4ef10da12d1df7e643dbe71c75b6de;p=thirdparty%2Fipxe.git Add "net" directory. Avoid including debug information in bin/%.s output, since the whole point is to have easy-to-read assembler. --- diff --git a/src/Makefile b/src/Makefile index d2ea5c63e..8174998d8 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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