From 746d17434797a7ce9009dae4689f8d08ad5a841a Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 15 Aug 2012 16:02:52 -0700 Subject: [PATCH] cbfstool: respect dependencies when building locally cbfstool was not looking at any dependencies when building by running make in util/cbfstool. By fixing this it's not required to make clean every time you edit a file in there. Change-Id: I544fd54d4b9dd3b277996c21ade56dc086b84800 Signed-off-by: Stefan Reinauer Reviewed-on: http://review.coreboot.org/1707 Reviewed-by: Marc Jones Tested-by: build bot (Jenkins) --- util/cbfstool/Makefile | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 7d667f894f..813ba1b053 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -16,6 +16,8 @@ COMMON+=cbfs-mkstage.o cbfs-mkpayload.o cbfstool.o COMMON:=$(addprefix $(obj)/,$(COMMON)) +all: dep $(BINARY) + $(obj)/%.o: %.c $(HOSTCC) $(CFLAGS) -c -o $@ $< @@ -37,8 +39,6 @@ $(obj)/%.o: lzma/C/7zip/Common/%.cpp $(obj)/%.o: lzma/C/Common/%.cpp $(HOSTCXX) $(CXXFLAGS) -c -o $@ $< -all: $(BINARY) - clean: rm -f $(COMMON) $(BINARY) @@ -47,3 +47,13 @@ tags: $(obj)/cbfstool:$(COMMON) $(HOSTCXX) $(LDFLAGS) -o $@ $^ + +dep: + @$(HOSTCC) $(CFLAGS) -MM *.c > .dependencies + @$(HOSTCC) $(CFLAGS) -MM lzma/C/7zip/Decompress/*.c >> .dependencies + @$(HOSTCXX) $(CXXFLAGS) -MM lzma/C/7zip/Compress/*/*.cpp >> .dependencies + @$(HOSTCXX) $(CXXFLAGS) -MM lzma/C/7zip/Common/*.cpp >> .dependencies + @$(HOSTCXX) $(CXXFLAGS) -MM lzma/C/Common/*.cpp >> .dependencies + @$(HOSTCXX) $(CXXFLAGS) -MM lzma/*.cc >> .dependencies + +-include .dependencies