Skip to content

Instantly share code, notes, and snippets.

@chancez
Last active August 29, 2015 14:10
Show Gist options
  • Save chancez/2338fbac1dd16db96520 to your computer and use it in GitHub Desktop.
Save chancez/2338fbac1dd16db96520 to your computer and use it in GitHub Desktop.
%.dvi: %.tex
latex $^
latex $^
%.ps: %.dvi
dvips -R -Poutline -t letter $^ -o $@
%.pdf: %.ps
ps2pdf $^
SRC:=$(wildcard *.tex)
OBJS:=$(SRC:.tex=.pdf)
all: $(OBJS)
default: $(OBJS)
clean:
rm -f *.pdf *.ps *.dvi *.out *.log *.aux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment