aboutsummaryrefslogtreecommitdiffstats
path: root/make/installwin.mk
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2021-12-18 17:19:20 +0100
committerJay Berkenbilt <ejb@ql.org>2021-12-18 18:20:56 +0100
commit426b4ce8565e4f9143c122fd3afbcc22598fc6c4 (patch)
treef6871b378481cb421e317d13fad121f8dad31be2 /make/installwin.mk
parenteb20b4d0cbdf42abb675566608f16f9a65a61c05 (diff)
downloadqpdf-426b4ce8565e4f9143c122fd3afbcc22598fc6c4.tar.zst
Update documentation build/installation
Diffstat (limited to 'make/installwin.mk')
-rw-r--r--make/installwin.mk11
1 files changed, 6 insertions, 5 deletions
diff --git a/make/installwin.mk b/make/installwin.mk
index 4acf9e3f..af17ba81 100644
--- a/make/installwin.mk
+++ b/make/installwin.mk
@@ -17,11 +17,12 @@ installwin: all
cp qpdf/$(OUTPUT_DIR)/fix-qdf.exe $(DEST)/bin
cp include/qpdf/*.h $(DEST)/include/qpdf
cp include/qpdf/*.hh $(DEST)/include/qpdf
- if [ -f doc/qpdf-manual.html ]; then \
- mkdir $(DEST)/doc/_static; \
- cp doc/qpdf-manual.html $(DEST)/doc; \
- cp doc/_static/* $(DEST)/doc/_static; \
- fi
if [ -f doc/qpdf-manual.pdf ]; then \
cp doc/qpdf-manual.pdf $(DEST)/doc; \
fi
+ if [ -d doc/html ]; then \
+ cp -r doc/html $(DEST)/doc; \
+ fi
+ if [ -d doc/singlehtml ]; then \
+ cp -r doc/singlehtml $(DEST)/doc; \
+ fi