Add actual file-copying rule.
authorMike Taylor <mike@indexdata.com>
Tue, 25 Mar 2014 17:28:10 +0000 (17:28 +0000)
committerMike Taylor <mike@indexdata.com>
Tue, 25 Mar 2014 17:28:10 +0000 (17:28 +0000)
Remove old **make-default** target, now that "install" is default.

doc/Makefile

index 36cf736..89787b5 100644 (file)
@@ -1,9 +1,6 @@
 DOCS = README.html README.odt README.pdf \
        whitepaper.html whitepaper.odt whitepaper.pdf
 
-# Default rule when "make" is invoked without a target
-**default**: README.html whitepaper.html
-
 INSTALLABLE = README.html whitepaper.html
 INSTALLED = $(INSTALLABLE:%=../tools/htdocs/%)
 
@@ -12,6 +9,11 @@ install: $(INSTALLED)
 uninstall:
        rm -f $(INSTALLED)
 
+../tools/htdocs/%: %
+       rm -f $@
+       cp -p $? $@
+       chmod -w $@
+
 all: $(DOCS)
 
 # For a description of pandoc's markdown format, see: