5ec2c2b998
- Whitespace fixes, remove trailing whitespace, use TABs for identation (except in Kconfig "help" lines, which start with one TAB and two spaces as per Linux kernel style) - Kconfig: Standardize on 'bool' (not 'boolean'). - s/lar/cbfs/ in one Kconfig help string. - Reword various Kconfig menu entries for a more usable and consistent menu. - Fix incorrect comment of NO_RUN in devices/Kconfig. - superio/serverengines/Kconfig: Incorrect config name. - superio/Makefile.inc: s/serverengine/serverengines/. - superio/intel/Kconfig: s/SUPERIO_FINTEK_I3100/SUPERIO_INTEL_I3100/. - mainboard/via/vt8454c/Kconfig: Fix copy-paste error in help string. - mainboard/via/epia-n/Kconfig: Fix "bool" menu text. - console/Kconfig: Don't mention defaults in the menu string, kconfig already displays them anyway. - Kill "Drivers" menu for now, it only confuses users as long as it's emtpy. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4567 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
35 lines
867 B
Makefile
35 lines
867 B
Makefile
|
|
ifdef POST_EVALUATION
|
|
|
|
cbfsobj :=
|
|
# commands
|
|
cbfsobj += create.o
|
|
cbfsobj += bootblock.o
|
|
cbfsobj += delete.o
|
|
cbfsobj += extract.o
|
|
cbfsobj += add.o
|
|
cbfsobj += print.o
|
|
cbfsobj += resize.o
|
|
# main tool
|
|
cbfsobj += cbfstool.o
|
|
cbfsobj += util.o
|
|
cbfsobj += fs.o
|
|
|
|
cbfsinc := cbfstool.h cbfs.h
|
|
|
|
$(obj)/util/cbfstool:
|
|
$(Q)mkdir -p $@
|
|
$(Q)mkdir -p $@/tools/lzma
|
|
|
|
$(obj)/util/cbfstool/%.o: $(top)/util/cbfstool/%.c
|
|
$(Q)printf " HOSTCC $(subst $(obj)/,,$(@))\n"
|
|
$(Q)$(HOSTCC) $(HOSTCFLAGS) -c -o $@ $<
|
|
|
|
$(obj)/util/cbfstool/cbfstool: $(obj)/util/cbfstool $(obj)/util/cbfstool/tools/cbfs-mkpayload $(obj)/util/cbfstool/tools/cbfs-mkstage $(addprefix $(obj)/util/cbfstool/,$(cbfsobj))
|
|
$(Q)printf " HOSTCC $(subst $(obj)/,,$(@)) (link)\n"
|
|
$(Q)$(HOSTCC) -o $@ $(addprefix $(obj)/util/cbfstool/,$(cbfsobj))
|
|
|
|
endif
|
|
|
|
include $(top)/util/cbfstool/tools/Makefile.inc
|
|
|