From bc2480d70c946ba43e6772361f5b85542e161211 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 11 Dec 2012 15:39:22 +0300 Subject: [PATCH] Makefile: Add make target for example template Use: `make example` or `make template.pdf` to see the stock moderncv template. --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 7e36797..73943b4 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,10 @@ cv: cv.pdf cv.pdf: cv.tex pdflatex cv.tex +example: template.pdf + +template.pdf: template.tex + pdflatex template.tex + clean: rm -rf *.out *.dvi *.log *.out *.aux *.pdf