Idris2-boot/Notes/Makefile
2020-05-13 16:23:07 +06:00

14 lines
199 B
Makefile

# Makefile to render documents
CC=pandoc
DOCS=implementation-notes.md Directives.md IDE-mode.md
PDFS=$(patsubst %.md,%.pdf,$(DOCS))
%.pdf: %.md
$(CC) $< -o $@
all: $(PDFS)
clean:
rm -f $(PDFS)