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 \$<
|