Merge branch 'master' of ssh://repo.or.cz/srv/git/pec
[pec.git] / Makefile
blobdc32ee4ca23256d5b2a1f1a8bbf6fc4db4baee29
1 BASE:=physical-evolutionary-computation
2 ROOT:=$(BASE).tex
3 RESULT:=$(BASE).pdf
5 ALLDEP:=Makefile
7 all: $(RESULT)
9 $(RESULT): $(ROOT) $(ALLDEP)
10 pdflatex --interaction=nonstopmode $(ROOT)
11 bibtex $(BASE)
13 clean: FORCE
14 rm -f *~ *.aux *.ent *.log *.blg *.toc
17 realclean: clean
18 rm -f $(PDF) *.bbl
20 .PHONY: FORCE