diff options
| author | Philipp Le <philipp-le-prviat@freenet.de> | 2020-05-03 00:04:47 +0200 |
|---|---|---|
| committer | Philipp Le <philipp-le-prviat@freenet.de> | 2021-03-04 01:14:10 +0100 |
| commit | bdc4323142fe07bffe581fc1595e1e0bab0f8f8a (patch) | |
| tree | e0d0488851875962338424faae1efa53d56dd364 /Makefile | |
| parent | 0809568ab788464f063d7d9165bc41fd8d24a5c3 (diff) | |
| download | dcs-lecture-notes-bdc4323142fe07bffe581fc1595e1e0bab0f8f8a.zip dcs-lecture-notes-bdc4323142fe07bffe581fc1595e1e0bab0f8f8a.tar.gz dcs-lecture-notes-bdc4323142fe07bffe581fc1595e1e0bab0f8f8a.tar.bz2 | |
Adding references
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -4,11 +4,15 @@ BUILD_DIR = build LATEXMK = latexmk -pdf -silent -synctex=1 LATEXMK_PVC = $(LATEXMK) -pvc -ALL_TARGETS = $(BUILD_DIR)/chapter00.pdf $(BUILD_DIR)/chapter01.pdf $(BUILD_DIR)/chapter02.pdf -COMMON_DEPS = common/settings.tex common/titlepage.tex common/acronym.tex common/imprint.tex +ALL_CHAPTERS = $(BUILD_DIR)/chapter00.pdf $(BUILD_DIR)/chapter01.pdf $(BUILD_DIR)/chapter02.pdf +COMMON_DEPS = common/settings.tex common/titlepage.tex common/acronym.tex common/imprint.tex DCS.bib -all: $(ALL_TARGETS) +all: chapters complete +.PHONY: chapters +chapters: $(ALL_CHAPTERS) + +.PHONY: complete complete: $(BUILD_DIR)/DCS.pdf clean: |
