# # makefile for gnu make (gmake) # DVI = dvips # PAPER is the name of the paper... PAPER.tex is the base file for the paper PAPER = paper1spec # Where to look for the content of the paper TEXT-DIR = Text FIGURES-DIR = Figures ALGORITHMS-DIR = Algorithms GRAPHS-DIR = Graphs # tex files that are included in the document. # So make knows if something has changed. TEXTS = local.bib \ $(TEXT-DIR)/intro.tex \ $(TEXT-DIR)/conclusion.tex # other content. just like the list of tex files above FIGURES = ALGORITHMS = GRAPHS = # once you specify the paper name and all the sources, you don't need to modify anything below this line. all: $(PAPER).pdf $(PAPER).pdf: $(PAPER).ps ps2pdf $(PAPER).ps $(PAPER).pdf $(PAPER).dvi: $(PAPER).tex $(TEXTS) $(FIGURES) $(ALGORITHMS) $(PAPER).bbl latex $(PAPER) latex $(PAPER) $(PAPER).bbl: local.bib @echo; latex $(PAPER) @echo; bibtex $(PAPER) $(PAPER).ps: $(PAPER).dvi @rm -f $(PAPER).ps @echo; dvips -fq < $(PAPER).dvi > $(PAPER).ps @echo; grep undef $(PAPER).log || true @echo; grep multiple $(PAPER).log || true clean: rm -f *~ $(TEXT-DIR)/*~ rm -f *~ $(ALGORITHMS-DIR)/*~ rm -f $(PAPER).ps $(PAPER).dvi $(PAPER).log $(PAPER).aux \ $(PAPER).blg $(PAPER).bbl