Changeset fb16d5c for doc/refrat
- Timestamp:
- May 3, 2018, 12:15:55 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 7ca8441c
- Parents:
- b68fc85
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/refrat/Makefile
rb68fc85 rfb16d5c 34 34 35 35 DOCUMENT = refrat.pdf 36 BASE = ${basename ${DOCUMENT}} 36 37 37 38 # Directives # … … 42 43 43 44 clean : 44 @rm -frv ${DOCUMENT} ${ basename ${DOCUMENT}}.ps ${Build}45 @rm -frv ${DOCUMENT} ${BASE}.ps ${Build} 45 46 46 47 # File Dependencies # 47 48 48 ${DOCUMENT} : ${ basename ${DOCUMENT}}.ps49 ${DOCUMENT} : ${BASE}.ps 49 50 ps2pdf $< 50 51 51 ${ basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi52 ${BASE}.ps : ${BASE}.dvi 52 53 dvips ${Build}/$< -o $@ 53 54 54 ${ basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \55 ${BASE}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 55 56 ${Macros}/common.tex ${Macros}/lstlang.sty ${Macros}/indexstyle ../bibliography/pl.bib 56 57 # Conditionally create an empty *.ind (index) file for inclusion until makeindex is run. … … 70 71 71 72 predefined : 72 sed -f predefined.sed ${ basename ${DOCUMENT}}.tex > ${basename $@}.cf73 sed -f predefined.sed ${BASE}.tex > ${basename $@}.cf 73 74 74 75 ## Define the default recipes. … … 77 78 mkdir -p ${Build} 78 79 79 %.tex : %.fig 80 %.tex : %.fig ${Build} 80 81 fig2dev -L eepic $< > ${Build}/$@ 81 82 82 %.ps : %.fig 83 %.ps : %.fig ${Build} 83 84 fig2dev -L ps $< > ${Build}/$@ 84 85 85 %.pstex : %.fig 86 %.pstex : %.fig ${Build} 86 87 fig2dev -L pstex $< > ${Build}/$@ 87 88 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note: See TracChangeset
for help on using the changeset viewer.