summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2018-10-11 23:23:31 +0200
committerJay Berkenbilt <ejb@ql.org>2018-10-11 23:27:54 +0200
commitaa864d214249bc16b93a56dbdc1cac91fa276a46 (patch)
treef7f9753040607b5ebe9a5c465b6ea45a68694933 /Makefile
parentd1368a38516726e0891660696e86585ad37bf55e (diff)
downloadqpdf-aa864d214249bc16b93a56dbdc1cac91fa276a46.tar.zst
Automatically detect outdated generated files
Update documentation to reflect that automatically generated files are committed. Detect when they are outdated if we have the ability to regenerate them.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 4 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 17cae493..414430ea 100644
--- a/Makefile
+++ b/Makefile
@@ -97,12 +97,7 @@ $(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)
-
-DISTFILES = $(AUTOFILES) doc/qpdf-manual.html doc/qpdf-manual.pdf
+DISTFILES = doc/qpdf-manual.html doc/qpdf-manual.pdf
distfiles.zip: $(DISTFILES)
$(RM) distfiles.zip
zip distfiles.zip $(DISTFILES)
@@ -116,10 +111,9 @@ distclean: clean
$(RM) libqpdf.pc libqpdf.map
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 distfiles.zip
+ $(RM) doc/qpdf-manual.*
+ $(RM) -r install-mingw* install-msvc* external-libs
+ $(RM) distfiles.zip
.PHONY: $(TEST_TARGETS)