diff options
author | syn <isaqtm@gmail.com> | 2020-04-15 04:35:30 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2020-04-15 04:35:30 +0300 |
commit | f642380d55c66e4e5deaaa6c7cef15f6dbfe36c6 (patch) | |
tree | 31ed9377de27678b376668131e0cbf8a8639ce16 /Makefile | |
parent | 406cd62e6c18587b2859bf77434527f2ac87027d (diff) | |
download | tex2-f642380d55c66e4e5deaaa6c7cef15f6dbfe36c6.tar.gz |
Reorganize & alg-1
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}') + |