Skip to content
Snippets Groups Projects
Makefile 165 B
Newer Older
SOURCES = CODING.md HTML.md PROTOCOL.md UI.md LAYOUT.md
PDFDOCS = $(patsubst %.md,%.pdf,$(SOURCES))

all: $(PDFDOCS)

.md.pdf:
	pandoc -o $@ $<

.SUFFIXES: .md .pdf