kesto.de Cheatsheets

make

Makefile to call pdflatex for all *.tex files

PDF = $(patsubst %.tex,%.pdf,$(wildcard *.tex))

all: $(PDF)

%.pdf: %.tex
  pdflatex $<

clean:
  rm *.pdf