mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-11-28 05:32:03 +03:00
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)
|