salad commit

This commit is contained in:
2022-12-01 21:37:44 +00:00
parent f6ae1e19c0
commit 3557107248
12 changed files with 411 additions and 82 deletions

View File

@@ -0,0 +1,28 @@
# (c) 2010: Johann A. Briffa <j.briffa@ieee.org>
# $Id: Makefile 1791 2010-09-28 17:00:10Z jabriffa $
TARGETS := main.pdf
DEPENDS := $(wildcard *.tex) $(wildcard *.cls) $(wildcard *.bib)
PDFLATEX=pdflatex
.force:
all: $(TARGETS)
archive: $(TARGETS)
rm -f archive.zip
zip -r archive.zip Figures/ Makefile *.cls *.tex *.bib $(TARGETS) -x "*.svn*"
%.bbl: %.aux
bibtex $*
%.aux: %.tex $(DEPENDS)
$(PDFLATEX) $*.tex
%.pdf: %.aux %.bbl
$(PDFLATEX) $*.tex
$(PDFLATEX) $*.tex
clean:
-/bin/rm -f $(TARGETS) *.aux *.log *.bbl *.blg *.out *.toc *.lof *.lot