diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..3b7b246 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +MV ?=mv +RM ?=rm -rf +RMRECURSIVE ?=$(RM) -r + + +all: + true + +clean: + $(MV) cat.pdf cat.pdf.bak + $(RM) *.log *.synctex.gz *.pdf + $(MV) cat.pdf.bak cat.pdf + $(RMRECURSIVE) $(shell fd -I '[a-f0-9]{32}') + |