Dump contents into git

This commit is contained in:
Matt Soucy
2018-10-27 17:07:36 -04:00
commit 13dd60986c
9 changed files with 208 additions and 0 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
chapter-sort = $(shell echo -e $(subst $(sp),'\n',$2) | sort $1 --key=1,1 -)
books : Book1.pdf
Book1.pdf : $(call chapter-sort,-n,$(wildcard Book-1/*.md))
pandoc $^ -o $@
clean:
rm -rf Book1.pdf
.PHONY: books clean