Skip to content
Snippets Groups Projects
Makefile 385 B
Newer Older
  • Learn to ignore specific revisions
  • TEX_SOURCES = report.tex abstract.tex intro.tex components.tex \
    
        endpoints.tex applications.tex conclusion.tex \
        applications-ulo-table.tex
    
    
    report.pdf: $(TEX_SOURCES) references.bib
    
    	pdflatex $<
    	biber $(basename $<)
    	pdflatex $<
    
    
    view: report.pdf
    	mupdf $<
    
    clean:
    	rm -f report.pdf
    	rm -f *.aux *.bbl *.blg *.dvi *.log *.pdf *.out
    	rm -f *.bcf *.run.xml
    
    .PHONY: view clean