aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index e623549..881f5be 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ TEX_FILE=$(NAME).tex
BIB_FILE=$(NAME).bib
PDF_FILE=$(NAME).pdf
-.PHONY: all
+.PHONY: all clean
all: $(PDF_FILE)
@@ -11,3 +11,6 @@ $(PDF_FILE): $(TEX_FILE) $(BIB_FILE)
pdflatex $(TEX_FILE)
bibtex $(NAME)
pdflatex $(TEX_FILE)
+
+clean:
+ rm $(PDF_FILE)