blob: e6d082cb0758743a8b04384a4f368a1dd1001085 [file] [log] [blame]
Patrick Georgiae570d52015-09-16 16:34:15 +02001top ?= $(abspath ../..)
2objutil ?= $(top)/util
3obj ?= $(objutil)/cbfsutil
4
5CONFIG_FMD_GENPARSER := y
Peter Stuge1d862de2009-04-14 00:08:34 +00006
Alexandru Gagniuc4a7b1152014-01-27 17:17:29 -06007HOSTCC ?= $(CC)
Sol Boucher0e539312015-03-05 15:38:03 -08008
Sol Boucher0e539312015-03-05 15:38:03 -08009.PHONY: all
Patrick Georgiae570d52015-09-16 16:34:15 +020010all: $(objutil)/cbfstool/cbfstool \
11 $(objutil)/cbfstool/fmaptool \
12 $(objutil)/cbfstool/rmodtool \
Peter Stuge1d862de2009-04-14 00:08:34 +000013
Sol Boucher0e539312015-03-05 15:38:03 -080014.PHONY: clean
Patrick Georgib7b56dd82009-09-14 13:29:27 +000015clean:
Patrick Georgiae570d52015-09-16 16:34:15 +020016 $(RM) $(objutil)/cbfstool/cbfstool $(cbfsobj)
17 $(RM) $(objutil)/cbfstool/fmaptool $(fmapobj)
18 $(RM) $(objutil)/cbfstool/rmodtool $(rmodobj)
Peter Stuge1d862de2009-04-14 00:08:34 +000019
Patrick Georgiae570d52015-09-16 16:34:15 +020020include Makefile.inc