Changeset a7d93cb for doc/theses/mike_brooks_MMath/Makefile
- Timestamp:
- Mar 19, 2025, 10:15:18 AM (5 days ago)
- Branches:
- master
- Children:
- 048dde4
- Parents:
- bb85f76
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified doc/theses/mike_brooks_MMath/Makefile ¶
rbb85f76 ra7d93cb 9 9 10 10 TeXSRC = ${wildcard *.tex} 11 PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} 11 PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} ${notdir ${wildcard ${Pictures}/*.fig}} 12 PicSRC := ${PicSRC:.fig=.pdf} # substitute ".fig" with ".pdf" 13 GraphSRC = ${notdir ${wildcard ${Pictures}/*.dat}} 14 GraphSRC := ${GraphSRC:.dat=.pdf} # substitute ".dat" with ".pdf" 12 15 DemoPgmSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}} 13 16 PgmSRC = ${notdir ${wildcard ${Programs}/*}} … … 51 54 # File Dependencies 52 55 53 %.pdf : ${TeXSRC} $(RunPgmOut) ${DemoPgmOut} ${PicSRC} ${BibSRC} ${BibRep}/pl.bib ${LaTMac}/common.tex Makefile | ${Build} 56 ${DOCUMENT}: ${TeXSRC} $(RunPgmOut) ${DemoPgmOut} ${GraphSRC} ${PicSRC} ${BibSRC} ${BibRep}/pl.bib ${LaTMac}/common.tex Makefile | ${Build} 57 echo ${PicSRC} 58 echo ${GraphSRC} 54 59 ${LaTeX} ${BASE} 55 60 ${BibTeX} ${Build}/${BASE} … … 82 87 $< > $@ 83 88 84 -include ${Build}/*.d 89 string-graph-peq-cppemu.pdf: string-graph-peq-cppemu.dat | ${Build} 90 gnuplot plot-peg-cppemu.gp 91 92 string-graph-peq-sharing.pdf: string-graph-peq-sharing.dat | ${Build} 93 gnuplot plot-peg-sharing.gp 94 95 string-graph-pta-sharing.pdf: string-graph-pta-sharing.dat | ${Build} 96 gnuplot plot-pta-sharing.gp 97 98 string-graph-pbv.pdf: string-graph-pbv.dat | ${Build} 99 gnuplot plot-pbv.gp 100 101 %.pdf: %.fig | ${Build} 102 fig2dev -L pdf $< > ${Build}/$@ 103 104 #-include ${Build}/*.d
Note: See TracChangeset
for help on using the changeset viewer.