]> arthur.barton.de Git - bup.git/blobdiff - Documentation/Makefile
Fix path ownership restoration problems on Cygwin.
[bup.git] / Documentation / Makefile
index 15cb3cd3ce634b4ae65a31d3535b663df1275840..067f69884965daa5f8d991461f2e17f7e25a0b4b 100644 (file)
@@ -14,14 +14,14 @@ default: all
 
 all: man html
 
-man: $(patsubst %.md,%,$(wildcard *.md))
+man: $(patsubst %.md,%.1,$(wildcard *.md))
 
-html: $(patsubst %.1.md,%.html,$(wildcard *.md))
+html: $(patsubst %.md,%.html,$(wildcard *.md))
 
-%: %.md.tmp Makefile
+%.1: %.md.tmp Makefile
        $(PANDOC) -s -r markdown -w man -o $@ $<
        
-%.html: %.1.md.tmp Makefile
+%.html: %.md.tmp Makefile
        $(PANDOC) -s -r markdown -w html -o $@ $<
        
 .PRECIOUS: %.md.tmp