19 lines
423 B
Makefile
19 lines
423 B
Makefile
|
.PHONY: default cleantmp clean
|
||
|
|
||
|
default: $(subst md,pdf,$(shell ls *.md))
|
||
|
|
||
|
%.pdf: %.html
|
||
|
wkhtmltopdf --title "$* - DJERABA Taky PREUD'HOMME Geoffrey" "$<" "$@"
|
||
|
|
||
|
%.html: %.tmp ../template.html
|
||
|
pandoc -f markdown+hard_line_breaks "$<" --template ../template.html -o "$@"
|
||
|
|
||
|
%.tmp: %.md
|
||
|
markedpp "$<" > "$@"
|
||
|
|
||
|
cleantmp:
|
||
|
rm -rf $(subst md,html,$(shell ls *.md)) *.tmp
|
||
|
|
||
|
clean: cleantmp
|
||
|
rm -rf $(subst md,pdf,$(shell ls *.md))
|