summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilipp Le <philipp-le-prviat@freenet.de>2020-04-28 00:49:43 +0200
committerPhilipp Le <philipp-le-prviat@freenet.de>2021-03-04 01:13:47 +0100
commitfe2708c947ac7e1f0cc8342599953edbf15b5e91 (patch)
tree9918b509d94e611337c79559722602bec3645653 /Makefile
parent3491b12f231613dacbd61bb7771a03914c518cad (diff)
downloaddcs-lecture-notes-fe2708c947ac7e1f0cc8342599953edbf15b5e91.zip
dcs-lecture-notes-fe2708c947ac7e1f0cc8342599953edbf15b5e91.tar.gz
dcs-lecture-notes-fe2708c947ac7e1f0cc8342599953edbf15b5e91.tar.bz2
Adding Acronyms and Imprint
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index befa336..158dafb 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,7 @@ LATEXMK = latexmk -pdf -silent -synctex=1
LATEXMK_PVC = $(LATEXMK) -pvc
ALL_TARGETS = $(BUILD_DIR)/chapter01.pdf
+COMMON_DEPS = common/settings.tex common/titlepage.tex common/acronym.tex common/imprint.tex
all: $(ALL_TARGETS)
@@ -12,7 +13,7 @@ clean:
mkdir -p $(BUILD_DIR)
cd $(BUILD_DIR) ; rm -f *.aux *.fdb_latexmk *.fls *.lof *.log *.lot *.pdf *.synctex.gz
-$(BUILD_DIR)/%.pdf: main/%.tex
+$(BUILD_DIR)/%.pdf: main/%.tex $(COMMON_DEPS) %/content.tex
mkdir -p $(BUILD_DIR)
cd $(BUILD_DIR) ; $(LATEXMK) ../$<