clean out obsoleted config.lb rules and output, fix indenting (trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3457 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
48b85fc6a9
commit
1409136281
|
@ -126,11 +126,6 @@ makerule coreboot
|
||||||
action "$(CROSS_COMPILE)nm -n coreboot | sort > coreboot.map"
|
action "$(CROSS_COMPILE)nm -n coreboot | sort > coreboot.map"
|
||||||
end
|
end
|
||||||
|
|
||||||
#makerule crt0.S
|
|
||||||
# depends "$(CRT0)"
|
|
||||||
# action "cp $< $@"
|
|
||||||
#end
|
|
||||||
|
|
||||||
# the buildrom tool
|
# the buildrom tool
|
||||||
makerule buildrom
|
makerule buildrom
|
||||||
depends "$(TOP)/util/buildrom/buildrom.c"
|
depends "$(TOP)/util/buildrom/buildrom.c"
|
||||||
|
@ -141,13 +136,11 @@ end
|
||||||
makedefine .PHONY : crt0.s
|
makedefine .PHONY : crt0.s
|
||||||
makerule crt0.s
|
makerule crt0.s
|
||||||
depends "crt0.S $(CRT0_INCLUDES)"
|
depends "crt0.S $(CRT0_INCLUDES)"
|
||||||
action "@echo \"$(CPP) ... $< > $@ \""
|
|
||||||
action "$(CPP) $(CPPFLAGS) -I. -I$(TOP)/src $< > $@.new && mv $@.new $@"
|
action "$(CPP) $(CPPFLAGS) -I. -I$(TOP)/src $< > $@.new && mv $@.new $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule crt0.o
|
makerule crt0.o
|
||||||
depends "crt0.s"
|
depends "crt0.s"
|
||||||
action "@echo $(CC) ... -o $@ $<"
|
|
||||||
action "@$(CC) -c $(CPU_OPT) -o $@ $<"
|
action "@$(CC) -c $(CPU_OPT) -o $@ $<"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -179,11 +172,6 @@ makerule build_opt_tbl
|
||||||
action "$(HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) $< -o $@"
|
action "$(HOSTCC) $(HOSTCFLAGS) $(CPUFLAGS) $< -o $@"
|
||||||
end
|
end
|
||||||
|
|
||||||
#makerule /$(TARGET_DIR)/option_table.c
|
|
||||||
# depends "build_opt_tbl $(MAINBOARD)/cmos.layout"
|
|
||||||
# action "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout"
|
|
||||||
#end
|
|
||||||
|
|
||||||
makerule option_table.c
|
makerule option_table.c
|
||||||
depends "build_opt_tbl $(MAINBOARD)/cmos.layout"
|
depends "build_opt_tbl $(MAINBOARD)/cmos.layout"
|
||||||
action "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout --header option_table.h"
|
action "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout --header option_table.h"
|
||||||
|
@ -196,12 +184,6 @@ end
|
||||||
|
|
||||||
if HAVE_OPTION_TABLE
|
if HAVE_OPTION_TABLE
|
||||||
object ./option_table.o
|
object ./option_table.o
|
||||||
#special rule
|
|
||||||
#makerule option_table.o
|
|
||||||
# depends "option_table.c"
|
|
||||||
# action "$(CC) -c $(CFLAGS) -o $@ $<"
|
|
||||||
#end
|
|
||||||
# object option_table.o
|
|
||||||
end
|
end
|
||||||
|
|
||||||
makerule clean
|
makerule clean
|
||||||
|
|
Loading…
Reference in New Issue