11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.261 2000/09/14 12:43:46 peterg
## view of ps s files now uses -sub and -viewlevel options
##
## Revision 1.260 2000/09/14 09:59:08 peterg
## Added -viewlevel switch
##
## Revision 1.259 2000/09/11 08:21:27 peterg
|
>
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright (C) 2000 by Peter J. Gawthrop
###############################################################
## Version control history
###############################################################
## $Header$
## $Log$
## Revision 1.262 2000/09/14 17:16:33 peterg
## Fixes some outstanding bugs:
## perpendicular strokes in cbg.fig
## proper display of hierachical cbg file (-sub and -viewlevel)
##
## Revision 1.261 2000/09/14 12:43:46 peterg
## view of ps s files now uses -sub and -viewlevel options
##
## Revision 1.260 2000/09/14 09:59:08 peterg
## Added -viewlevel switch
##
## Revision 1.259 2000/09/11 08:21:27 peterg
|
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
|
$1_$2.dvi: $1_$2.doc
doc2dvi $1_$2 "$documenttype"
#Create PostScript version of fig files
ifeq ($REPTYPE,bg)
$1_$2.ps : $1_$2.fig
echo Creating $1_$2.ps
multi_command2 'fig2dev -Leps' $1 $2.fig $2.ps | sh
endif
ifeq ($REPTYPE,data)
#Create PostScript version of dat file
# + another version with Args added to the name if its appropriate
ifeq ($PLOTTYPE,multiple)
|
|
|
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
|
$1_$2.dvi: $1_$2.doc
doc2dvi $1_$2 "$documenttype"
#Create PostScript version of fig files
ifeq ($REPTYPE,bg)
$1_$2.ps : $1_$2.fig
echo Creating $1_$2.ps
multi_command2 'fig2dev -Lps' $1 $2.fig $2.ps | sh
endif
ifeq ($REPTYPE,data)
#Create PostScript version of dat file
# + another version with Args added to the name if its appropriate
ifeq ($PLOTTYPE,multiple)
|