summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 9 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 1f9b223..3bf6fb7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,16 @@
-.SUFFIXES: .md .pdf
+docs = echo.md tutorial.md fable-arch.md
+outputs = $(docs:.md=.pdf) $(docs:.md=.html)
-all: echo.pdf tutorial.pdf fable-arch.pdf
+.SUFFIXES: .md .pdf .html
+
+all: $(outputs)
publish:
install -d files
- install -m 0644 *.pdf files
+ install -m 0644 $(outputs) files
.md.pdf:
./pandoc.sh $< -o $@
+
+.md.html:
+ ./pandoc.sh $< -o $@