cookbook/snacks/Makefile
Anna Schumaker ab01acdc48 Convert Peanut Butter Cookies recipe to TeX
And place it under the Snacks section.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2016-06-28 08:25:05 -04:00

12 lines
184 B
Makefile

SOURCES = $(sort $(wildcard *.tex))
OBJECTS = $(patsubst %.tex, %.pdf, $(SOURCES))
all:
latexmk -pdf $(SOURCES)
pdfjoin -o snacks.pdf $(OBJECTS)
clean:
latexmk -C
rm snacks.pdf