1
0
Files
plaintextaccounting/Makefile
2016-02-24 10:37:16 -08:00

20 lines
416 B
Makefile

all: $(patsubst %.md,%.html,$(wildcard *.md)) Makefile
watch:
fswatch -0 *.{md,tmpl} | xargs -0 -n1 -I{} make all
livereload:
livereloadx -p 10000 --static .
clean:
rm -f $(patsubst %.md,%.html,$(wildcard *.md))
PANDOC = pandoc # --from markdown --to html
# index.html: index.md index.tmpl
# $(PANDOC) --template index.tmpl index.md -o $@
%.html: %.md index.tmpl
$(PANDOC) --template index.tmpl $< -o $@