Overview
| Comment: | Explicitly generate eps files |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
5a4752bab1c14ff8da2940cbdfab1e75 |
| User & Date: | gawthrop@users.sourceforge.net on 2003-08-10 18:56:55.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2003-08-13
| ||
| 15:49:39 | Don't sort the states when defaulting - leave in implied order check-in: 3faec2ba4d user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2003-08-10
| ||
| 18:56:55 | Explicitly generate eps files check-in: 5a4752bab1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
|
2003-08-09
| ||
| 00:29:52 | Fixed grep error when lbl file doesn't exist. check-in: bb9301a0b6 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mtt
from [191d973ad8]
to [83a71e8d54].
| ︙ | ︙ | |||
13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Copyright (C) 2001 by Peter J. Gawthrop ############################################################### ## Version control history ############################################################### ## $Header$ ## $Log$ ## Revision 1.379 2003/08/06 10:33:42 gawthrop ## User now warned not to use -c which is unsupported. ## ## Revision 1.378 2003/08/04 09:15:09 gawthrop ## -ss switch reinstated ## ## Revision 1.377 2003/06/11 15:48:02 gawthrop | > > > | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# Copyright (C) 2001 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.380 2003/08/06 14:44:51 gawthrop
## Don't include -q or -u in long file names via ${__ARGS}
##
## Revision 1.379 2003/08/06 10:33:42 gawthrop
## User now warned not to use -c which is unsupported.
##
## Revision 1.378 2003/08/04 09:15:09 gawthrop
## -ss switch reinstated
##
## Revision 1.377 2003/06/11 15:48:02 gawthrop
|
| ︙ | ︙ | |||
2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 |
$1_%.oct: $1_%.cc $1_def.h $1_sympar.h $1_cr.h
echo Creating $1_\$*.oct; $MKOCTFILE ${MTT_CXXINCS} -DCODEGENTARGET=OCTAVEDLD $1_\$*.cc
## pdf files from ps (new version)
$1_%.pdf: $1_%.ps
echo Creating $1_\$*.pdf; ps2pdf $1_\$*.ps $1_\$*.pdf
.PRECIOUS: mtt_%.oct
.PRECIOUS: $1_%.oct
mtt_%.oct: mtt_%.cc
echo Compiling \$<
${MKOCTFILE} ${MTT_CXXINCS} -DCODEGENTARGET=OCTAVEDLD $define_octave_dev \$<
| > > > | 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 |
$1_%.oct: $1_%.cc $1_def.h $1_sympar.h $1_cr.h
echo Creating $1_\$*.oct; $MKOCTFILE ${MTT_CXXINCS} -DCODEGENTARGET=OCTAVEDLD $1_\$*.cc
## pdf files from ps (new version)
$1_%.pdf: $1_%.ps
echo Creating $1_\$*.pdf; ps2pdf $1_\$*.ps $1_\$*.pdf
## eps from ps (NB ps files are actually eps anyway)
$1_%.eps: $1_%.ps
echo Creating $1_\$*.eps; cp $1_\$*.ps $1_\$*.eps
.PRECIOUS: mtt_%.oct
.PRECIOUS: $1_%.oct
mtt_%.oct: mtt_%.cc
echo Compiling \$<
${MKOCTFILE} ${MTT_CXXINCS} -DCODEGENTARGET=OCTAVEDLD $define_octave_dev \$<
|
| ︙ | ︙ |