cookbook/breakfast/Makefile

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