Commit 3fad56155ec7732988e0bfea23d8d97598ae9a41
1 parent
ee2ff04c62
Exists in
master
fix makefile et le gitignore.
Showing 2 changed files with 8 additions and 7 deletions Inline Diff
.gitignore
ifcs2018_abstract.aux | 1 | 1 | ifcs2018_abstract.aux | |
ifcs2018_abstract.bbl | 2 | 2 | ifcs2018_abstract.bbl | |
ifcs2018_abstract.blg | 3 | 3 | ifcs2018_abstract.blg | |
ifcs2018_abstract.log | 4 | 4 | ifcs2018_abstract.log | |
ifcs2018_abstract.out | 5 | 5 | ifcs2018_abstract.out | |
ifcs2018_abstract.pdf | 6 | 6 | ifcs2018_abstract.pdf | |
7 | 7 | |||
ifcs2018_processing.aux | 8 | 8 | ifcs2018_proceeding.aux | |
ifcs2018_processing.bbl | 9 | 9 | ifcs2018_proceeding.bbl | |
ifcs2018_processing.blg | 10 | 10 | ifcs2018_proceeding.blg | |
ifcs2018_processing.log | 11 | 11 | ifcs2018_proceeding.log | |
ifcs2018_processing.out | 12 | 12 | ifcs2018_proceeding.out | |
ifcs2018_processing.pdf | 13 | 13 | ifcs2018_proceeding.pdf | |
14 | 14 | |||
ifcs2018_poster.aux | 15 | 15 | ifcs2018_poster.aux | |
ifcs2018_poster.log | 16 | 16 | ifcs2018_poster.log | |
ifcs2018_poster.out | 17 | 17 | ifcs2018_poster.out | |
ifcs2018_poster.pdf | 18 | 18 | ifcs2018_poster.pdf | |
19 | 19 | |||
*.bak | 20 | 20 | *.bak | |
21 | 21 | |||
Makefile
# source: https://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project | 1 | 1 | # source: https://tex.stackexchange.com/questions/40738/how-to-properly-make-a-latex-project | |
2 | 2 | |||
TEX = pdflatex -shell-escape -interaction=nonstopmode -file-line-error | 3 | 3 | TEX = pdflatex -shell-escape -interaction=nonstopmode -file-line-error | |
BIB = bibtex | 4 | 4 | BIB = bibtex | |
TARGET = ifcs2018 | 5 | 5 | TARGET = ifcs2018 | |
6 | 6 | |||
all: $(TARGET)_abstract $(TARGET)_poster $(TARGET)_proceeding | 7 | 7 | all: $(TARGET)_abstract $(TARGET)_poster $(TARGET)_proceeding | |
8 | 8 | |||
view: $(TARGET) | 9 | 9 | view: $(TARGET) | |
evince $(TARGET).pdf | 10 | 10 | evince $(TARGET).pdf | |
11 | 11 | |||
view_poster: $(TARGET)_poster | 12 | 12 | view_poster: $(TARGET)_poster | |
evince $(TARGET)_poster.pdf | 13 | 13 | evince $(TARGET)_poster.pdf | |
14 | 14 | |||
$(TARGET)_abstract: $(TARGET)_abstract.tex references.bib | 15 | 15 | $(TARGET)_abstract: $(TARGET)_abstract.tex references.bib | |
$(TEX) $@.tex | 16 | 16 | $(TEX) $@.tex | |
$(BIB) $@ | 17 | 17 | $(BIB) $@ | |
$(TEX) $@.tex | 18 | 18 | $(TEX) $@.tex | |
$(TEX) $@.tex | 19 | 19 | $(TEX) $@.tex | |
20 | 20 | |||
$(TARGET)_poster: | 21 | 21 | $(TARGET)_poster: | |
$(TEX) $@.tex | 22 | 22 | $(TEX) $@.tex | |
$(TEX) $@.tex | 23 | 23 | $(TEX) $@.tex | |
24 | 24 | |||
$(TARGET)_proceeding: $(TARGET)_proceeding.tex references.bib | 25 | 25 | $(TARGET)_proceeding: $(TARGET)_proceeding.tex references.bib | |
$(TEX) $@.tex | 26 | 26 | $(TEX) $@.tex | |
$(BIB) $@ | 27 | 27 | $(BIB) $@ | |
$(TEX) $@.tex | 28 | 28 | $(TEX) $@.tex | |
$(TEX) $@.tex | 29 | 29 | $(TEX) $@.tex |