Skip to content
Snippets Groups Projects
Select Git revision
  • Bachelorarbeit default protected
1 result

Makefile

Blame
  • Makefile 230 B
    # Makefile for Latex project
    NAME = Bachelorarbeit
    
    
    all:
    	@latexmk $(NAME).tex
    
    pdf:
    	@pdflatex -synctex=1 -interaction=nonstopmode -aux-directory=.aux -include-directory=src $(NAME).tex
    
    
    tidy:
    	@latexmk -c
    
    clean:
    	@latexmk -C