37743a913f
Change-Id: I783aa4b2319aaedd57ce9a67ca935392a611298f Signed-off-by: Nico Huber <nico.huber@secunet.com> Reviewed-on: http://review.coreboot.org/12127 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
20 lines
450 B
Makefile
20 lines
450 B
Makefile
top ?= $(abspath ../..)
|
|
objutil ?= $(top)/util
|
|
|
|
CONFIG_FMD_GENPARSER := y
|
|
|
|
HOSTCC ?= $(CC)
|
|
|
|
.PHONY: all
|
|
all: $(objutil)/cbfstool/cbfstool \
|
|
$(objutil)/cbfstool/fmaptool \
|
|
$(objutil)/cbfstool/rmodtool \
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) fmd_parser.c fmd_parser.h fmd_scanner.c fmd_scanner.h
|
|
$(RM) $(objutil)/cbfstool/cbfstool $(cbfsobj)
|
|
$(RM) $(objutil)/cbfstool/fmaptool $(fmapobj)
|
|
$(RM) $(objutil)/cbfstool/rmodtool $(rmodobj)
|
|
|
|
include Makefile.inc
|