diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,8 +1,9 @@ -infiles := $(wildcard *.mdwn) +markdown := $(wildcard *.mdwn) +hypertext = $(markdown:%.mdwn=%.html) -all: $(infiles:%.mdwn=%.html) +all: $(hypertext) -$(infiles:%.mdwn=%.html): %.html: %.mdwn +%.html: %.mdwn pandoc -f markdown -t html -o $@ $< clean: |