17 lines
221 B
Makefile

CC=pandoc
RENDERS= ch1.html ch2.html ch3.html blog.html
html: $(RENDERS)
$(RENDERS): %.html : en/%.md
$(CC) $^ -o $@
archive:
zip ./cephalon-stallman.zip ./Makefile ./en/ch*.md
clean:
rm $(RENDERS)
rm renders/*