Initialized repository.
This commit is contained in:
13
Makefile
Normal file
13
Makefile
Normal file
@ -0,0 +1,13 @@
|
||||
TEX=rubber -d
|
||||
TEXs=$(wildcard *.tex)
|
||||
PDFs=$(TEXs:.tex=.pdf)
|
||||
default: $(PDFs)
|
||||
clean:
|
||||
rm -f *.blg *.log *.out *.aux *.toc *.bbl *.mtc* *.maf *.lof *.lot *.som *.pdf sections/*.aux
|
||||
|
||||
keeppdf:
|
||||
rm -f *.blg *.log *.out *.aux *.toc *.bbl *.mtc* *.maf *.lof *.lot *.som sections/*.aux
|
||||
|
||||
%.pdf: %.tex
|
||||
$(TEX) $<
|
||||
|
Reference in New Issue
Block a user