Makefile 235 Bytes
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