summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to '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