blob: 37326fa8665fb7e8c24f0e82ba8457686e71e583 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
PANDOC_FLAGS = --toc --number-sections
all: vue-notes.html
%.html: %.md
pandoc --standalone -f markdown -t html $(PANDOC_FLAGS) < $< > $@
clean:
rm -f -- *.html
.PHONY: all clean
.SECONDARY:
.DELETE_ON_ERROR:
|