diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..c7c6321 --- /dev/null +++ b/Makefile @@ -0,0 +1,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) |