diff options
| author | Philipp Le <philipp-le-prviat@freenet.de> | 2020-05-01 12:56:59 +0200 |
|---|---|---|
| committer | Philipp Le <philipp-le-prviat@freenet.de> | 2021-03-04 01:14:10 +0100 |
| commit | ad78d6ae088f89eb22c469be844fc16e39df0043 (patch) | |
| tree | ba64574dd2b1160d6bfaf100c7ec211c8faadd2b /Makefile | |
| parent | 7edf674302220895c2d39b74dd4f03c58621aedd (diff) | |
| download | dcs-lecture-notes-ad78d6ae088f89eb22c469be844fc16e39df0043.zip dcs-lecture-notes-ad78d6ae088f89eb22c469be844fc16e39df0043.tar.gz dcs-lecture-notes-ad78d6ae088f89eb22c469be844fc16e39df0043.tar.bz2 | |
Adding index, adding complete script
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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) ../$< |
