Idris2-boot/Notes/Makefile
Edwin Brady 18f269bbef Add some notes
Mostly copied from Blodwen and brought up to date (more or less).
2019-06-24 13:05:19 +01:00

13 lines
195 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 $(PDFS)