From e323d1a29b4ef10da12d1df7e643dbe71c75b6de Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 24 Apr 2006 15:20:01 +0000 Subject: [PATCH] Add "net" directory. Avoid including debug information in bin/%.s output, since the whole point is to have easy-to-read assembler. --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index d2ea5c63..8174998d 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