From 34311a89c5fec7e44fab5cb92e8cef8cc4702077 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 24 Jan 2013 10:37:00 -0500 Subject: Add autofiles.zip make target This target creates autofiles.zip from a source distribution or fresh checkout after autogen.sh has been run. The resulting zip can be unzipped over a fresh checkout to support easier building on Windows from a clean checkout. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 5a76ddda..e882672b 100644 --- a/Makefile +++ b/Makefile @@ -91,6 +91,11 @@ $(foreach B,$(BUILD_ITEMS),$(eval \ clean_$(B): ; \ $(RM) -r $(B)/$(OUTPUT_DIR))) +AUTOFILES = configure aclocal.m4 libqpdf/qpdf/qpdf-config.h.in +autofiles.zip: $(AUTOFILES) + $(RM) autofiles.zip + zip autofiles.zip $(AUTOFILES) + distclean: clean $(RM) -r autoconf.mk autom4te.cache config.log config.status libtool $(RM) libqpdf/qpdf/qpdf-config.h @@ -103,6 +108,7 @@ maintainer-clean: distclean $(RM) configure doc/qpdf-manual.* libqpdf/qpdf/qpdf-config.h.in $(RM) aclocal.m4 $(RM) -r install-mingw install-msvc external-libs + $(RM) autofiles.zip .PHONY: $(TEST_TARGETS) $(foreach B,$(TEST_ITEMS),$(eval \ -- cgit v1.2.3-54-g00ecf