Blame view
git/Makefile
235 Bytes
dd9f592b8 Initial commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
OUTPUT=git.pdf git.html all: $(OUTPUT) %.pdf: %.md pandoc -s -N -V lang:french -V papersize:a4paper -V geometry:margin=1in \ $< -o $@ %.html: %.md pandoc -s -N -t slidy $< -o $@ .PHONY: clean clean: -rm $(OUTPUT) 2> /dev/null |