Created
July 3, 2015 16:03
-
-
Save HSchmale16/fa729604ea1eb2ed472f to your computer and use it in GitHub Desktop.
Pandoc Makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Markdown Converter Makefile Using Pandoc | |
# Prepares PDFS from markdown source | |
SRC := $(wildcard *.md) | |
PDFS := $(SRC:.md=.md.pdf) | |
all: $(PDFS) | |
clean: | |
rm $(PDFS) | |
%.md.pdf: %.md | |
pandoc -s $< -o $@ | |
.PHONY: clean all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment