Skip to content

Instantly share code, notes, and snippets.

@rigelk
Forked from rbonvall/Makefile
Last active August 29, 2015 14:07
Show Gist options
  • Save rigelk/f6440f45080479e9d49f to your computer and use it in GitHub Desktop.
Save rigelk/f6440f45080479e9d49f to your computer and use it in GitHub Desktop.
TEXFILES = $(wildcard *.tex)
PDFFILES = $(TEXFILES:.tex=.pdf)
all: pdf
pdf: $(PDFFILES)
%.pdf: %.tex
@rubber --pdf $<
clean:
@rubber --clean --pdf $(TEXFILES:.tex=)
.PHONY: pdf clean all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment