cookbook/grains/Makefile
Anna Schumaker 1c5e84d76c Add subdirectory for grains recipes
Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
2016-06-26 10:13:13 -04:00

12 lines
184 B
Makefile

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