diff options
author | Chad Versace <chad@kiwitree.net> | 2019-03-19 12:01:31 -0700 |
---|---|---|
committer | Chad Versace <chad@kiwitree.net> | 2019-03-19 12:01:34 -0700 |
commit | 43f108160a2365e994f10cfca8b08f859da5743d (patch) | |
tree | ec89da3646c1c386772c52dc3137598509056cc7 /Makefile | |
download | 2019-shaunna-pdf-master.zip 2019-shaunna-pdf-master.tar.xz |
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) |