Changes in doc/papers/OOPSLA17/Makefile [484ee53:23c27039]
- File:
-
- 1 edited
-
doc/papers/OOPSLA17/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
doc/papers/OOPSLA17/Makefile
r484ee53 r23c27039 33 33 34 34 DOCUMENT = generic_types.pdf 35 BASE = ${basename ${DOCUMENT}}36 35 37 36 # Directives # … … 42 41 43 42 clean : 44 @rm -frv ${DOCUMENT} ${ BASE}.ps ${Build}43 @rm -frv ${DOCUMENT} ${basename ${DOCUMENT}}.ps ${Build} 45 44 46 45 # File Dependencies # 47 46 48 ${DOCUMENT} : ${ BASE}.ps47 ${DOCUMENT} : ${basename ${DOCUMENT}}.ps 49 48 ps2pdf $< 50 49 51 ${ BASE}.ps : ${BASE}.dvi50 ${basename ${DOCUMENT}}.ps : ${basename ${DOCUMENT}}.dvi 52 51 dvips ${Build}/$< -o $@ 53 52 54 ${BASE}.dvi : Makefile ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} \ 55 ../../bibliography/pl.bib | ${Build} 53 ${basename ${DOCUMENT}}.dvi : Makefile ${Build} ${GRAPHS} ${PROGRAMS} ${PICTURES} ${FIGURES} ${SOURCES} ../../bibliography/pl.bib 56 54 # Must have *.aux file containing citations for bibtex 57 55 if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} ${basename $@}.tex ; fi … … 65 63 ## Define the default recipes. 66 64 67 ${Build} :65 ${Build}: 68 66 mkdir -p ${Build} 69 67 … … 71 69 gnuplot -e Build="'${Build}/'" evaluation/timing.gp 72 70 73 %.tex : %.fig | ${Build}71 %.tex : %.fig 74 72 fig2dev -L eepic $< > ${Build}/$@ 75 73 76 %.ps : %.fig | ${Build}74 %.ps : %.fig 77 75 fig2dev -L ps $< > ${Build}/$@ 78 76 79 %.pstex : %.fig | ${Build}77 %.pstex : %.fig 80 78 fig2dev -L pstex $< > ${Build}/$@ 81 79 fig2dev -L pstex_t -p ${Build}/$@ $< > ${Build}/$@_t
Note:
See TracChangeset
for help on using the changeset viewer.