From ad78d6ae088f89eb22c469be844fc16e39df0043 Mon Sep 17 00:00:00 2001 From: Philipp Le Date: Fri, 1 May 2020 12:56:59 +0200 Subject: Adding index, adding complete script --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3268a7d..5b14be7 100644 --- a/Makefile +++ b/Makefile @@ -9,10 +9,16 @@ COMMON_DEPS = common/settings.tex common/titlepage.tex common/acronym.tex common all: $(ALL_TARGETS) +complete: $(BUILD_DIR)/DCS.pdf + clean: mkdir -p $(BUILD_DIR) cd $(BUILD_DIR) ; rm -f *.aux *.fdb_latexmk *.fls *.lof *.log *.lot *.pdf *.synctex.gz +$(BUILD_DIR)/DCS.pdf: main/DCS.tex $(COMMON_DEPS) */*.tex + mkdir -p $(BUILD_DIR) + cd $(BUILD_DIR) ; $(LATEXMK) ../$< + $(BUILD_DIR)/%.pdf: main/%.tex $(COMMON_DEPS) %/*.tex mkdir -p $(BUILD_DIR) cd $(BUILD_DIR) ; $(LATEXMK) ../$< -- cgit v1.1