# Runs the makefigs program. # Last edited on 2008-01-15 00:33:12 by stolfi PROG := makefigs_aa PROGDIR := ../.. include ${STOLFIHOME}/programs/c/GENERIC-PROGS-TEST.make TAG := aa COLOROPS := -color # COLOROPS := -gray FMT := eps .PHONY:: make-plt show-plt run show-ps all: make-plt show-plt PLTEPS := \ ${TAG}-n-jr-xyrg.eps \ ${TAG}-n-ap-sr-nrm.eps \ ${TAG}-n-ap-sr-chb.eps \ ${TAG}-n-fn-g-ia.eps \ ${TAG}-n-fn-g-aa.eps \ ${TAG}-n-fn-g-ar.eps \ ${TAG}-n-fn-gg-ia.eps \ ${TAG}-n-fn-gg-aa.eps \ ${TAG}-n-fn-gg-ar.eps \ \ ${TAG}-h-jr-xyrg.eps \ ${TAG}-h-ap-sr-nrm.eps \ ${TAG}-h-ap-sr-chb.eps \ ${TAG}-h-fn-g-ia.eps \ ${TAG}-h-fn-g-aa.eps \ ${TAG}-h-fn-g-ar.eps \ ${TAG}-h-fn-gg-ia.eps \ ${TAG}-h-fn-gg-aa.eps \ ${TAG}-h-fn-gg-ar.eps SHOWEPS := kghostview ${PLTEPS}: ${PROGDIR}/${PROG} Makefile ${PROGDIR}/${PROG} -outName ${TAG}-n -eps -gray \ -fontSize 12 \ -scale 1.0 \ -gPlot \ -ggPlot \ -normPlot \ -chebPlot \ -xyrgPlot ${PROGDIR}/${PROG} -outName ${TAG}-h -eps -gray \ -fontSize 10 \ -scale 0.4881 \ -gPlot \ -ggPlot \ -normPlot \ -chebPlot \ -xyrgPlot make-plt: ${PLTEPS} show-plt: ${PLTEPS} for psf in ${PLTEPS}; do \ ${SHOWEPS} $$psf ; \ done ###################################################################### # PS figures PSFILES := \ ${TAG}-ap-sr-nrm.ps \ ${TAG}-ap-sr-chb.ps \ ${TAG}-fn-g.ps \ ${TAG}-fn-gg.ps \ ${TAG}-jr-xyrg.ps EPSFILES := ALLPS := \ ${PSFILES} \ ${EPSFILES} SHOWPS := kghostview run: ${PSFILES} show-ps ${PSFILES}: ${PROGDIR}/${PROG} ${PROGDIR}/${PROG} \ -outName plt -ps -color \ -fontSize 12 -scale 1.5 \ -gPlot -ggPlot \ -normPlot -chebPlot \ -xyrgPlot show-ps: ${PSFILES} for psf in ${PSFILES}; do \ ${SHOWPS} $$psf ; \ done ###################################################################### # Cleanup clean:: /bin/rm -f ${ALLPS}