2006-04-20 05:36:01 +00:00
|
|
|
# This is a simple, general makefile for LaTeX documents.
|
|
|
|
|
|
|
|
.SECONDARY:
|
|
|
|
|
2006-04-20 19:32:58 +00:00
|
|
|
all: LLADD.pdf
|
2006-04-20 05:36:01 +00:00
|
|
|
|
2006-04-20 19:32:58 +00:00
|
|
|
#%: %.tex %.bib
|
|
|
|
# latex $<
|
|
|
|
# bibtex $*
|
|
|
|
# latex $<
|
|
|
|
# latex $<
|
2006-04-20 05:36:01 +00:00
|
|
|
|
2006-04-20 19:32:58 +00:00
|
|
|
%.dvi: %.tex %.bib
|
|
|
|
touch $*.ent
|
|
|
|
latex $*.tex
|
2006-04-20 05:36:01 +00:00
|
|
|
bibtex $*
|
2006-04-20 19:32:58 +00:00
|
|
|
latex $*.tex
|
|
|
|
latex $*.tex
|
2006-04-20 05:36:01 +00:00
|
|
|
|
|
|
|
%.ps: %.dvi %.tex
|
|
|
|
dvips -t letter -o $@ $<
|
|
|
|
|
2006-04-20 19:32:58 +00:00
|
|
|
%.pdf: %.tex %.bib
|
|
|
|
touch $*.ent
|
|
|
|
pdflatex $*.tex
|
|
|
|
bibtex $*
|
|
|
|
pdflatex $*.tex
|
|
|
|
pdflatex $*.tex
|
|
|
|
# ps2pdf $< $@
|
2006-04-20 05:36:01 +00:00
|
|
|
|
2006-09-06 20:35:55 +00:00
|
|
|
%.html: %.tex %.bib
|
|
|
|
htlatex $*.tex
|
|
|
|
|
2006-04-20 05:36:01 +00:00
|
|
|
clean:
|
2006-09-06 20:35:55 +00:00
|
|
|
rm -f *.aux *.log *.dvi *.bbl *.blg *~ *.ent *.4ct *.xref *.4tc *.lg *.idv LLADD*x.png *.tmp
|
|
|
|
|