source: doc/refrat/Makefile @ 5ff188f

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 5ff188f was 5ff188f, checked in by Peter A. Buhr <pabuhr@…>, 6 years ago

further changes to document Makefiles

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[5ff188f]1## Define the configuration variables.
[f60d997]2
[5ff188f]3Build = build
4Figures = figures
5Macros = ../LaTeXmacros
6TeXLIB = .:${Macros}:${Build}:../bibliography:
7LaTeX  = TEXINPUTS=${TeXLIB} && export TEXINPUTS && latex -halt-on-error -output-directory=${Build}
[e55ca05]8BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
[f60d997]9
[5ff188f]10MAKEFLAGS = --no-print-directory --silent #
11VPATH = ${Figures}
12
[f60d997]13## Define the text source files.
14
[a188b16]15SOURCES = ${addsuffix .tex, \
[f60d997]16refrat \
[83e680d]17keywords \
[92c0f81]18operidents \
[f60d997]19}
20
21FIGURES = ${addsuffix .tex, \
22}
23
24PICTURES = ${addsuffix .pstex, \
25}
26
27PROGRAMS = ${addsuffix .tex, \
28}
29
30GRAPHS = ${addsuffix .tex, \
31}
32
33## Define the documents that need to be made.
34
35DOCUMENT = refrat.pdf
36
37# Directives #
38
[5ff188f]39.PHONY : all clean                                      # not file names
40
[f60d997]41all : ${DOCUMENT}
42
43clean :
[5ff188f]44        @rm -frv ${DOCUMENT} ${basename ${DOCUMENT}}.ps ${Build}
[f60d997]45
46# File Dependencies #
47
48${DOCUMENT} : ${basename ${DOCUMENT}}.ps
49        ps2pdf $<
50
51${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi
[5ff188f]52        dvips ${Build}/$< -o $@
[f60d997]53
[5ff188f]54${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ${basename ${DOCUMENT}}.tex \
55                ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib
[ce6c57c]56        # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
[5ff188f]57        if [ ! -r ${basename $@}.ind ] ; then touch ${Build}/${basename $@}.ind ; fi
[ce6c57c]58        # Must have *.aux file containing citations for bibtex
[f60d997]59        if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi
[5ff188f]60        -${BibTeX} ${Build}/${basename $@}
61        # Some citations reference others so run again to resolve these citations
[f60d997]62        ${LaTeX} ${basename $@}.tex
[5ff188f]63        -${BibTeX} ${Build}/${basename $@}
[ce6c57c]64        # Make index from *.aux entries and input index at end of document
[5ff188f]65        makeindex -s ${Macros}/indexstyle ${Build}/${basename $@}.idx
66        # Run again to finish citations
[ce6c57c]67        ${LaTeX} ${basename $@}.tex
68        # Run again to get index title into table of contents
69        ${LaTeX} ${basename $@}.tex
[f60d997]70
[20e409e]71predefined :
72        sed -f predefined.sed ${basename ${DOCUMENT}}.tex > ${basename $@}.cf
73
[f60d997]74## Define the default recipes.
75
[5ff188f]76${Build}:
77        mkdir -p ${Build}
78
[f60d997]79%.tex : %.fig
[5ff188f]80        fig2dev -L eepic $< > ${Build}/$@
[f60d997]81
82%.ps : %.fig
[5ff188f]83        fig2dev -L ps $< > ${Build}/$@
[f60d997]84
[83e9bd3]85%.pstex : %.fig
[5ff188f]86        fig2dev -L pstex $< > ${Build}/$@
87        fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
[83e9bd3]88
[f60d997]89# Local Variables: #
90# compile-command: "make" #
91# End: #
Note: See TracBrowser for help on using the repository browser.