summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPhilipp Le <philipp-le-prviat@freenet.de>2020-04-29 02:18:39 +0200
committerPhilipp Le <philipp-le-prviat@freenet.de>2021-03-04 01:14:10 +0100
commit7edf674302220895c2d39b74dd4f03c58621aedd (patch)
treed44e8d95cc82d60f4dbf7f1a991263d2a2f626a0 /Makefile
parentfe2708c947ac7e1f0cc8342599953edbf15b5e91 (diff)
downloaddcs-lecture-notes-7edf674302220895c2d39b74dd4f03c58621aedd.zip
dcs-lecture-notes-7edf674302220895c2d39b74dd4f03c58621aedd.tar.gz
dcs-lecture-notes-7edf674302220895c2d39b74dd4f03c58621aedd.tar.bz2
Adding Chapter 0: Introduction and Oragnization
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 158dafb..3268a7d 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ BUILD_DIR = build
LATEXMK = latexmk -pdf -silent -synctex=1
LATEXMK_PVC = $(LATEXMK) -pvc
-ALL_TARGETS = $(BUILD_DIR)/chapter01.pdf
+ALL_TARGETS = $(BUILD_DIR)/chapter00.pdf $(BUILD_DIR)/chapter01.pdf
COMMON_DEPS = common/settings.tex common/titlepage.tex common/acronym.tex common/imprint.tex
all: $(ALL_TARGETS)
@@ -13,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 $(COMMON_DEPS) %/content.tex
+$(BUILD_DIR)/%.pdf: main/%.tex $(COMMON_DEPS) %/*.tex
mkdir -p $(BUILD_DIR)
cd $(BUILD_DIR) ; $(LATEXMK) ../$<