From: David Sterba Date: Wed, 28 Jan 2015 17:16:10 +0000 (+0100) Subject: btrfs-progs: build, make build test work again X-Git-Tag: upstream/4.16.1~2405 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5989e9dd50fb5f6fcf2a0141f66688896c44894d;p=platform%2Fupstream%2Fbtrfs-progs.git btrfs-progs: build, make build test work again We need to regenerate version.h after clean-all. Signed-off-by: David Sterba --- diff --git a/Makefile.in b/Makefile.in index d3753fa..8efabbf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -260,8 +260,14 @@ library-test.static: $(libs_static) library-test.o @echo " [LD] $@" $(Q)$(CC) $(CFLAGS) -o library-test-static library-test.o $(LDFLAGS) $(libs_static) -test-build: +test-build: test-build-pre test-build-real + +test-build-pre: $(MAKE) clean-all + ./autogen.sh + ./configure + +test-build-real: $(MAKE) library-test -$(MAKE) library-test.static $(MAKE) -j 8 all