From 9c91339ae4558c302dc67c1c5f23132ebf7a6606 Mon Sep 17 00:00:00 2001
From: Thomas Klaehn
Date: Fri, 9 Oct 2015 15:06:37 +0200
Subject: [PATCH] error in Makefile
---
Makefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile
index 27c4a14..5929387 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ DEP := \
content.tex \
Makefile
-all: $(MAIN) $(DEP)
+all: $(MAIN)
clean:
rm -f \
@@ -18,7 +18,7 @@ clean:
$(basename $(MAIN)).toc \
$(MAIN)
-$(MAIN):
+$(MAIN): $(DEP)
@latex $(SRC)
latex $(SRC)
dvipdf $(basename $(MAIN)).dvi $(MAIN)