From 7fe31d87db578b5f441fa69f10e046abd88bd82b Mon Sep 17 00:00:00 2001
From: Adar Nimrod <nimrod@shore.co.il>
Date: Wed, 1 Nov 2017 22:39:17 +0200
Subject: [PATCH] Have outputs depend on the Makefile as well.

---
 Makefile | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 71a317d..d7d2758 100644
--- a/Makefile
+++ b/Makefile
@@ -14,16 +14,16 @@ PAPERSIZE = A4
 
 all: resume.html resume.pdf resume.docx resume.odt
 
-resume.html: $(RESUME)
+resume.html: $(RESUME) Makefile
 	pandoc -s -t html5 --email-obfuscation=none $(RESUME) -o resume.html
 
-resume.pdf: $(RESUME)
+resume.pdf: $(RESUME) Makefile
 	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.pdf
 
-resume.docx: $(RESUME)
+resume.docx: $(RESUME) Makefile
 	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.docx
 
-resume.odt: $(RESUME)
+resume.odt: $(RESUME) Makefile
 	pandoc $(RESUME) -V papersize=$(PAPERSIZE) -o resume.odt
 
 clean:
-- 
GitLab