Skip to content

Commit 6eb11f3

Browse files
committed
Update abstract with new results
1 parent 9154672 commit 6eb11f3

File tree

5 files changed

+110
-85
lines changed

5 files changed

+110
-85
lines changed

Makefile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
MAIN=main.tex
2+
SECTIONS=$(wildcard sections/*.tex)
3+
AUX=
4+
SOURCE=$(MAIN) $(SECTIONS) $(AUX)
5+
FIGS=$(wildcard figures/*)
6+
REFS=$(wildcard refs/*.bib)
7+
MACROS=$(wildcard macros/*.tex)
8+
9+
.PHONY: clean all abstract init
10+
11+
all: abstract
12+
abstract: main.pdf
13+
14+
init:
15+
git submodule update --init
16+
17+
main.pdf: $(MAIN) $(SECTIONS) $(AUX) $(REFS) $(FIGS) $(MACROS)
18+
latexmk -pdf $(basename $@).tex
19+
20+
tidy:
21+
latexmk -c $(MAIN)
22+
rm -f *run.xml *vtc *bbl *synctex.gz
23+
24+
clean:
25+
latexmk -C $(MAIN)
26+
rm -f *run.xml *vtc *bbl *synctex.gz

figures

Submodule figures updated 224 files

0 commit comments

Comments
 (0)