mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-23 20:22:34 +03:00
18f269bbef
Mostly copied from Blodwen and brought up to date (more or less).
13 lines
195 B
Makefile
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)
|