summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorMichael Brown2006-04-24 17:20:01 +0200
committerMichael Brown2006-04-24 17:20:01 +0200
commite323d1a29b4ef10da12d1df7e643dbe71c75b6de (patch)
tree2f130be71e630fe2fc324957faff11851a64d551 /src/Makefile
parentFirst sketch of a new net device API. (diff)
downloadipxe-e323d1a29b4ef10da12d1df7e643dbe71c75b6de.tar.gz
ipxe-e323d1a29b4ef10da12d1df7e643dbe71c75b6de.tar.xz
ipxe-e323d1a29b4ef10da12d1df7e643dbe71c75b6de.zip
Add "net" directory.
Avoid including debug information in bin/%.s output, since the whole point is to have easy-to-read assembler.
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile3
1 files changed, 2 insertions, 1 deletions
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