summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-09-11 15:48:02 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-09-11 15:48:02 +0200
commit5d9ece7fb377b8e3b62b82172cf8dd27a776b9fa (patch)
tree027b43feb20591a4518ccffc622e8fbc7414355a
parentc752077941cf4413d1d41a1f6cfc7c7e6f33b719 (diff)
Refactor makefile
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index acd0a61..33323e8 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,12 @@
+.POSIX:
+
+FILENAME = cv_gustaf_rydholm
+
clean:
rm -f *.aux *.log *.out *.pdf
compile:
pdflatex cv.tex
- mv cv.pdf cv_gustaf_rydholm.pdf
+ mv cv.pdf $(FILENAME).pdf
+
+.PHONY: clean compile