PANDOC=pandoc PANDOCFLAGS=--standalone --smart --toc -c pandoc.css ALL=installation-base.pdf installation-base.html \ installation-ldap.pdf installation-ldap.html \ installation-ldapsaisie.pdf installation-ldapsaisie.html \ installation-idp.pdf installation-idp.html \ exploitation-ldap.pdf exploitation-ldap.html all: $(ALL) %.pdf: %.md $(PANDOC) $(PANDOCFLAGS) --latex-engine=xelatex --variable lang=french $< -o $@ %.tex: %.md $(PANDOC) $(PANDOCFLAGS) --latex-engine=xelatex --variable lang=french $< -o $@ %.html: %.md $(PANDOC) $(PANDOCFLAGS) $< -o $@ %.txt: %.md $(PANDOC) $(PANDOCFLAGS) $< -o $@ .PHONY: clean: rm -f *.pdf *.html *.tex *.aux *.log *.out *.toc