blob: c7c632129d75ebfbd22e0b3764dc7e4907eb2061 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
.DELETE_ON_ERROR:
PDFS := cards.pdf
DEP_FILES := $(PDFS:.pdf=.d)
.PHONY: all
all: $(PDFS)
@
.PHONY: clean
clean:
$(RM) -- $(PDFS) $(DEP_FILES)
cards.pdf: make-cards
./make-cards
-include: $(DEP_FILES)
|