cookbook/breakfast/Makefile
Anna Schumaker 3635fcba59 Move breakfast recipes into a subdirectory
And create a makefile system that will build the directory and join
together the pdfs into a single document.

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2016-06-25 15:23:15 -04:00

12 lines
190 B
Makefile

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