Changeset 873e96c for doc/theses/mike_brooks_MMath/Makefile
- Timestamp:
- May 4, 2025, 10:05:17 PM (5 months ago)
- Branches:
- master
- Children:
- 411aa65
- Parents:
- 969d7d3
- git-author:
- Peter A. Buhr <pabuhr@…> (05/04/25 22:04:19)
- git-committer:
- Peter A. Buhr <pabuhr@…> (05/04/25 22:05:17)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/mike_brooks_MMath/Makefile
r969d7d3 r873e96c 13 13 TeXSRC = ${wildcard *.tex} 14 14 PicSRC = ${notdir ${wildcard ${Pictures}/*.png}} ${notdir ${wildcard ${Pictures}/*.fig}} 15 PicSRC := ${PicSRC:.fig=.pdf} # substitute ".fig" with ".pdf"15 PicSRC := ${PicSRC:.fig=.pdf} # substitute ".fig" with ".pdf" 16 16 GraphSRC_OLD = ${notdir ${wildcard ${Pictures}/*.dat}} 17 GraphSRC_OLD := ${GraphSRC_OLD:.dat=.pdf} 17 GraphSRC_OLD := ${GraphSRC_OLD:.dat=.pdf} # substitute ".dat" with ".pdf" 18 18 PlotINPUTS = ${wildcard ${Plots}/*.gp} ${wildcard ${Plots}/*.py} 19 19 PlotINPUTS := ${addsuffix .INPUTS,${PlotINPUTS}} 20 20 PlotSRC = ${notdir ${wildcard ${Plots}/*.gp}} 21 PlotSRC := ${addprefix ${Build}/plot-,${PlotSRC:.gp=.pdf}} 21 PlotSRC := ${addprefix ${Build}/plot-,${PlotSRC:.gp=.pdf}} # substitute ".gp" with ".pdf" 22 22 DemoPgmSRC = ${notdir ${wildcard ${Programs}/*-demo.cfa}} 23 23 PgmSRC = ${notdir ${wildcard ${Programs}/*}} … … 49 49 # Rules and Recipes 50 50 51 .PHONY : all clean # not file names51 .PHONY : all clean # not file names 52 52 .SECONDARY: 53 53 #.PRECIOUS : ${Build}/% # don't delete intermediates … … 82 82 ${CFA} $< -o $@ 83 83 84 ${Build}/%: ${Programs}/%.run.cfa | ${Build} 84 ${Build}/%: ${Programs}/%.run.cfa | ${Build} # cfa cannot handle pipe 85 85 sed -f ${Programs}/sedcmd $< > ${Build}/tmp.cfa; ${CFA} ${Build}/tmp.cfa -o $@ 86 86
Note:
See TracChangeset
for help on using the changeset viewer.