Skip to content

Instantly share code, notes, and snippets.

@jhjin
Created November 10, 2018 01:56
Show Gist options
  • Save jhjin/015acb52654fd78c9de5951ddcde809a to your computer and use it in GitHub Desktop.
Save jhjin/015acb52654fd78c9de5951ddcde809a to your computer and use it in GitHub Desktop.
Makefile for latex on Mac
# LaTex Makefile dependency
# brew update
# brew cask install mactex
SRC_FULLNAME=$(wildcard *.tex)
SRC_BASENAME=$(basename $(SRC_FULLNAME))
all:
pdflatex $(SRC_FULLNAME)
bibtex $(SRC_BASENAME)
pdflatex $(SRC_FULLNAME)
pdflatex $(SRC_FULLNAME)
clean:
rm -f *.aux *.bbl *.blg *.log *.pdf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment