This repository has been archived on 2019-08-09. You can view files and clone it, but cannot push or open issues or pull requests.
s6-up-tp/TP1/Makefile

21 lines
479 B
Makefile
Raw Normal View History

2017-05-02 07:47:48 +02:00
.PHONY: default cleantmp clean
2017-05-03 08:29:25 +02:00
default: $(subst md,pdf,$(wildcard *.md))
SOURCES=$(wildcard *.asm) $(wildcard *.txt)
2017-05-02 07:47:48 +02:00
%.pdf: %.html
wkhtmltopdf --title "$* - DJERABA Taky PREUD'HOMME Geoffrey" "$<" "$@"
%.html: %.tmp ../template.html
pandoc -f markdown+hard_line_breaks "$<" --template ../template.html -o "$@"
2017-05-03 08:29:25 +02:00
%.tmp: %.md $(SOURCES)
2017-05-02 07:47:48 +02:00
markedpp "$<" > "$@"
cleantmp:
2017-05-03 08:29:25 +02:00
rm -rf $(subst md,html,$(wildcard *.md)) *.tmp
2017-05-02 07:47:48 +02:00
clean: cleantmp
2017-05-03 08:29:25 +02:00
rm -rf $(subst md,pdf,$(wildcard *.md))