summaryrefslogtreecommitdiffstats
path: root/make/installwin.mk
diff options
context:
space:
mode:
Diffstat (limited to 'make/installwin.mk')
-rw-r--r--make/installwin.mk11
1 files changed, 2 insertions, 9 deletions
diff --git a/make/installwin.mk b/make/installwin.mk
index af17ba81..e6ba534f 100644
--- a/make/installwin.mk
+++ b/make/installwin.mk
@@ -8,7 +8,6 @@ installwin: all
mkdir $(DEST)/lib
mkdir $(DEST)/include
mkdir $(DEST)/include/qpdf
- mkdir $(DEST)/doc
cp libqpdf/$(OUTPUT_DIR)/$(IMPORT_LIB_NAME) $(DEST)/lib
cp libqpdf/$(OUTPUT_DIR)/qpdf*.dll $(DEST)/bin
perl copy_dlls libqpdf/$(OUTPUT_DIR)/qpdf*.dll $(DEST)/bin $(OBJDUMP) $(WINDOWS_WORDSIZE)
@@ -17,12 +16,6 @@ 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.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; \
+ if [ -d doc ]; then \
+ cp -r doc $(DEST); \
fi