Blame view
Makefile
855 Bytes
30a06bd2a
|
1 2 3 4 5 |
# source: https://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project TEX = pdflatex -shell-escape -interaction=nonstopmode -file-line-error BIB = bibtex TARGET = ifcs2018 |
cd5530b2a
|
6 |
all: $(TARGET)_abstract $(TARGET)_poster $(TARGET)_proceeding |
30a06bd2a
|
7 |
|
d6490b5fb
|
8 |
view: $(TARGET) |
30a06bd2a
|
9 |
evince $(TARGET).pdf |
d6490b5fb
|
10 11 |
view_poster: $(TARGET)_poster evince $(TARGET)_poster.pdf |
7fcf1da2a
|
12 13 14 15 16 |
$(TARGET)_abstract: $(TARGET)_abstract.tex references.bib $(TEX) $@.tex $(BIB) $@ $(TEX) $@.tex $(TEX) $@.tex |
30a06bd2a
|
17 |
|
d6490b5fb
|
18 19 20 |
$(TARGET)_poster: $(TEX) $@.tex $(TEX) $@.tex |
cd5530b2a
|
21 |
$(TARGET)_proceeding: $(TARGET)_proceeding.tex references.bib |
7fcf1da2a
|
22 23 24 25 |
$(TEX) $@.tex $(BIB) $@ $(TEX) $@.tex $(TEX) $@.tex |
30a06bd2a
|
26 27 |
clean: rm -f $(TARGET).aux $(TARGET).log $(TARGET).out $(TARGET).bbl $(TARGET).blg |
d6490b5fb
|
28 |
rm -f $(TARGET)_poster.aux $(TARGET)_poster.log $(TARGET)_poster.out |
30a06bd2a
|
29 30 |
mrproper: clean |
d6490b5fb
|
31 |
rm -f $(TARGET).pdf $(TARGET)_poster.pdf |