git-quick-start

an introduction to Git version control
git clone git://src.adamsgaard.dk/git-quick-start # fast
git clone https://src.adamsgaard.dk/git-quick-start.git # slow
Log | Files | Refs | README | LICENSE Back to index

Makefile (336B)


      1 SRC=$(wildcard *.tex)
      2 BIB=
      3 DEPS=$(wildcard *.tex)
      4 PDFS=$(SRC:.tex=.pdf)
      5 
      6 all: ${PDFS}
      7 
      8 %.pdf: %.tex $(BIB) $(DEPS)
      9 	pdflatex $<
     10 	pdflatex $<
     11 
     12 clean:
     13 	@$(RM) *.{glo,idx,log,toc,ist,acn,acr,alg,bbl,blg,dvi,glg,gls,ilg,ind,lof,lot,maf,mtc,mtc1,out,synctex.gz,dfb_latexmk,fls,xdy,run.xml}
     14 	@$(RM) *.aux
     15 	@$(RM) *-blx.bib
     16 
     17 .PHONY: all clean