aboutsummaryrefslogtreecommitdiffstats
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rw-r--r--make/installwin.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/make/installwin.mk b/make/installwin.mk
index 960cc51f..e1e623a3 100644
--- a/make/installwin.mk
+++ b/make/installwin.mk
@@ -18,5 +18,9 @@ installwin: all
cp include/qpdf/*.h $(DEST)/include/qpdf
cp include/qpdf/*.hh $(DEST)/include/qpdf
cp doc/stylesheet.css $(DEST)/doc
- cp doc/qpdf-manual.html $(DEST)/doc
- cp doc/qpdf-manual.pdf $(DEST)/doc
+ if [ -f doc/qpdf-manual.html ]; then \
+ cp doc/qpdf-manual.html $(DEST)/doc; \
+ fi
+ if [ -f doc/qpdf-manual.pdf ]; then \
+ doc/qpdf-manual.pdf $(DEST)/doc; \
+ fi