Blame view

Makefile 518 Bytes
30a06bd2a   jfriedt   initial commit: I...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  # 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
  
  .PHONY: all view
  
  all : $(TARGET).pdf
  
  view :
  	evince $(TARGET).pdf
  
  $(TARGET).pdf : $(TARGET).tex references.bib
  	$(TEX) $(TARGET).tex
  	$(BIB) $(TARGET)
  	$(TEX) $(TARGET).tex
  	$(TEX) $(TARGET).tex
  
  clean:
  	rm -f $(TARGET).aux $(TARGET).log $(TARGET).out $(TARGET).bbl $(TARGET).blg
  
  mrproper: clean
  	rm -f $(TARGET).pdf