Ignore:
Timestamp:
Mar 19, 2025, 10:15:18 AM (5 days ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
048dde4
Parents:
bb85f76
Message:

first attempt to use gnuplot for graphs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified doc/theses/mike_brooks_MMath/Makefile

    rbb85f76 ra7d93cb  
    99
    1010TeXSRC = ${wildcard *.tex}
    11 PicSRC = ${notdir ${wildcard ${Pictures}/*.png}}
     11PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} ${notdir ${wildcard ${Pictures}/*.fig}}
     12PicSRC := ${PicSRC:.fig=.pdf}           # substitute ".fig" with ".pdf"
     13GraphSRC = ${notdir ${wildcard ${Pictures}/*.dat}}
     14GraphSRC := ${GraphSRC:.dat=.pdf}               # substitute ".dat" with ".pdf"
    1215DemoPgmSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}}
    1316PgmSRC = ${notdir ${wildcard ${Programs}/*}}
     
    5154# File Dependencies
    5255
    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}
    5459        ${LaTeX} ${BASE}
    5560        ${BibTeX} ${Build}/${BASE}
     
    8287        $< > $@
    8388
    84 -include ${Build}/*.d
     89string-graph-peq-cppemu.pdf: string-graph-peq-cppemu.dat | ${Build}
     90        gnuplot plot-peg-cppemu.gp
     91
     92string-graph-peq-sharing.pdf: string-graph-peq-sharing.dat | ${Build}
     93        gnuplot plot-peg-sharing.gp
     94
     95string-graph-pta-sharing.pdf: string-graph-pta-sharing.dat | ${Build}
     96        gnuplot plot-pta-sharing.gp
     97
     98string-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.