Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add "net" directory.
Avoid including debug information in bin/%.s output, since the whole
point is to have easy-to-read assembler.
  • Loading branch information
Michael Brown committed Apr 24, 2006
1 parent 6209bd8 commit e323d1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Makefile
Expand Up @@ -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)
Expand All @@ -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
Expand Down

0 comments on commit e323d1a

Please sign in to comment.