cookbook/drinks/Makefile
Anna Schumaker 7f4e54728e Convert Ginger Beer recipe to TeX
And add it to the Drinks section

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2016-06-27 10:19:34 -04:00

12 lines
184 B
Makefile

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