Fix for issue #40. Make explicit makefile rule instead of % matching.

This commit is contained in:
Qball Cow 2014-04-15 17:16:55 +02:00
parent de21215491
commit dcb2d64f96
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ md_verbose_0 = @echo " MD" $@;
markdown_FILES=\
README.html
%.html: %.md
README.html: README.md
$(md_verbose) markdown $< > $@
##