ae570d5cee
There's no need to maintain two lists of dependencies that need to be changed every. single. time. Change-Id: I26bb8c884e98afe74fd9df11464bcf88e130cd92 Signed-off-by: Patrick Georgi <pgeorgi@chromium.org> Reviewed-on: http://review.coreboot.org/11674 Tested-by: build bot (Jenkins) Reviewed-by: Aaron Durbin <adurbin@chromium.org>
20 lines
416 B
Makefile
20 lines
416 B
Makefile
top ?= $(abspath ../..)
|
|
objutil ?= $(top)/util
|
|
obj ?= $(objutil)/cbfsutil
|
|
|
|
CONFIG_FMD_GENPARSER := y
|
|
|
|
HOSTCC ?= $(CC)
|
|
|
|
.PHONY: all
|
|
all: $(objutil)/cbfstool/cbfstool \
|
|
$(objutil)/cbfstool/fmaptool \
|
|
$(objutil)/cbfstool/rmodtool \
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) $(objutil)/cbfstool/cbfstool $(cbfsobj)
|
|
$(RM) $(objutil)/cbfstool/fmaptool $(fmapobj)
|
|
$(RM) $(objutil)/cbfstool/rmodtool $(rmodobj)
|
|
|
|
include Makefile.inc
|