From 2452d52626260fdd4a2bebb2dbd9a6d878642100 Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Mon, 25 Aug 2014 15:05:19 +0300
Subject: [PATCH] modified:   Makefile

---
 Makefile | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/Makefile b/Makefile
index b6afd5c..04392e2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,23 +1,23 @@
-resume = resume.rst
-css = resume.css
-papersize = A4
+RESUME = resume.rst
+CSS = resume.css
+PAPERSIZE = A4
 
 all: html pdf docx odt
 
-html: $(resume)
-	pandoc -s -t html5 --email-obfuscation=none -c resume.css $(resume) -o resume.html
+html: $(RESUME)
+	pandoc -s -t html5 --email-obfuscation=none -c resume.css $(RESUME) -o resume.html
 
-pdf: $(resume)
-	pandoc $(resume) -c $(css) -V papersize=$(papersize) -o resume.pdf
+pdf: $(RESUME)
+	pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.pdf
 
-docx: $(resume) html
-	pandoc $(resume) -c $(css) -V papersize=$(papersize) -o resume.docx
+docx: $(RESUME) html
+	pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.docx
 
-odt: $(resume) html
-	pandoc $(resume) -c $(css) -V papersize=$(papersize) -o resume.odt
+odt: $(RESUME) html
+	pandoc $(RESUME) -c $(CSS) -V papersize=$(PAPERSIZE) -o resume.odt
 
 clean:
 	rm resume.html resume.pdf resume.docx resume.odt
 
 publish: all
-	rsync -az --exclude="$(resume)" --exclude="Makefile" --exclude="resume.css" ./ www.shore.co.il:/var/www/htdocs/www.shore.co.il/resume
+	rsync -az --exclude="$(RESUME)" --exclude="Makefile" --exclude="resume.css" ./ www.shore.co.il:/var/www/htdocs/www.shore.co.il/resume
-- 
GitLab