cookbook/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
260 B
Makefile

dirs := breakfast grains animals plants drinks
pdfs := $(foreach dir, $(dirs), $(dir)/$(dir).pdf)
all:
$(foreach dir, $(dirs), $(MAKE) -C $(dir);)
pdfjoin -o cookbook.pdf $(pdfs)
clean:
$(foreach dir, $(dirs), $(MAKE) -C $(dir)/ clean;)
rm cookbook.pdf