Commit 3fad56155ec7732988e0bfea23d8d97598ae9a41
1 parent
ee2ff04c62
Exists in
master
fix makefile et le gitignore.
Showing 2 changed files with 8 additions and 7 deletions Side-by-side Diff
.gitignore
... | ... | @@ -5,12 +5,12 @@ |
5 | 5 | ifcs2018_abstract.out |
6 | 6 | ifcs2018_abstract.pdf |
7 | 7 | |
8 | -ifcs2018_processing.aux | |
9 | -ifcs2018_processing.bbl | |
10 | -ifcs2018_processing.blg | |
11 | -ifcs2018_processing.log | |
12 | -ifcs2018_processing.out | |
13 | -ifcs2018_processing.pdf | |
8 | +ifcs2018_proceeding.aux | |
9 | +ifcs2018_proceeding.bbl | |
10 | +ifcs2018_proceeding.blg | |
11 | +ifcs2018_proceeding.log | |
12 | +ifcs2018_proceeding.out | |
13 | +ifcs2018_proceeding.pdf | |
14 | 14 | |
15 | 15 | ifcs2018_poster.aux |
16 | 16 | ifcs2018_poster.log |
Makefile
... | ... | @@ -30,8 +30,9 @@ |
30 | 30 | |
31 | 31 | clean: |
32 | 32 | rm -f $(TARGET).aux $(TARGET).log $(TARGET).out $(TARGET).bbl $(TARGET).blg |
33 | + rm -f $(TARGET)_proceeding.aux $(TARGET)_proceeding.log $(TARGET)_proceeding.out $(TARGET)_proceeding.bbl $(TARGET)_proceeding.blg | |
33 | 34 | rm -f $(TARGET)_poster.aux $(TARGET)_poster.log $(TARGET)_poster.out |
34 | 35 | |
35 | 36 | mrproper: clean |
36 | - rm -f $(TARGET).pdf $(TARGET)_poster.pdf | |
37 | + rm -f $(TARGET)_abstract.pdf $(TARGET)_proceeding.pdf $(TARGET)_poster.pdf |