From 75bd04f0780d87a01da134047e5afc9dd21df602 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Mon, 20 Oct 2014 21:45:03 -0700 Subject: [PATCH] Makefile: Make *.sty and *.tex precious so Make won't delete them See [1] for the .PRECIOUS docs. [1]: https://www.gnu.org/software/make/manual/html_node/Special-Targets.html#index-preserving-with-_002ePRECIOUS --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c1298d6..09da578 100644 --- a/Makefile +++ b/Makefile @@ -49,6 +49,8 @@ USEFUL_PACKAGES = blindtext.sty draftmark.sty etextools.sty etoolbox.sty \ floatrow.sty forloop.sty fr-subfig.sty lastpage.sty ltxnew.sty \ pagerange.sty tocloft.sty xifthen.sty +.PRECIOUS: %.sty %.tex + drexel-thesis.tar.gz : $(CLASS_FILES) $(EXAMPLE_FILES) $(EXTRA_FILES) \ $(USEFUL_PACKAGES) rm -f $@ -- 2.26.2