Message ID | 1397149020-3501-5-git-send-email-drjones@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Thu, Apr 10, 2014 at 06:56:45PM +0200, Andrew Jones wrote: > also add a check for config.mak in Makefile > > Signed-off-by: Andrew Jones <drjones@redhat.com> Acked-by: Christoffer Dall <christoffer.dall@linaro.org> -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/.gitignore b/.gitignore index d6663ec10caf1..775d0dfd8263e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,8 @@ patches .stgit-* cscope.* +*.swp +/config.mak +/*-run +/test.log +/msr.out diff --git a/Makefile b/Makefile index 566d2bee771e1..7eeece84300df 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,13 @@ +ifeq ($(wildcard config.mak),) +$(error run ./configure first. See ./configure -h) +endif + include config.mak DESTDIR := $(PREFIX)/share/qemu/tests -.PHONY: arch_clean clean +.PHONY: arch_clean clean distclean #make sure env CFLAGS variable is not used CFLAGS = @@ -53,3 +57,6 @@ install: clean: arch_clean $(RM) lib/.*.d $(libcflat) $(cflatobjs) + +distclean: clean + $(RM) config.mak $(TEST_DIR)-run test.log msr.out
also add a check for config.mak in Makefile Signed-off-by: Andrew Jones <drjones@redhat.com> --- .gitignore | 5 +++++ Makefile | 9 ++++++++- 2 files changed, 13 insertions(+), 1 deletion(-)