blob: f9f897e03e8818fcbd90a698627ac78a1a7575e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Make the PLOT package.
$call relink
$exit
update:
$call relink
$call install
;
relink:
$update libpkg.a
$call linkplot
$call linkncar
;
install:
$move xx_plot.e bin$x_plot.e
$move xx_ncar.e bin$x_ncar.e
;
ncar:
$update libpkg.a
$call linkncar
;
linkncar:
$set LIBS = "-lncar -lgks -lxtools"
$omake x_ncar.x
$link x_ncar.o libpkg.a $(LIBS) -o xx_ncar.e
;
plot:
$update libpkg.a
$call linkplot
;
linkplot:
$set LIBS = "-lncar -lgks -lxtools -liminterp"
$omake x_plot.x
$link x_plot.o libpkg.a $(LIBS) -o xx_plot.e
;
libpkg.a:
@crtpict
gdevices.x
getdata.x <imhdr.h>
hgpline.x <gset.h>
improject.x <imhdr.h>
impprofile.x <gset.h> <math/iminterp.h>
impstatus.x
initmarker.x <gset.h>
perim.x <gset.h> <mach.h>
phistogram.x <mach.h> <imhdr.h> <gset.h>
phminmax.x <imhdr.h>
pltwcs.x <imhdr.h> <mwset.h>
t_contour.x <config.h> <error.h> <fset.h> <gset.h> <imhdr.h>\
<mach.h> <xwhen.h>
t_gkidir.x <gki.h>
t_gkimos.x <error.h> <fset.h> <gio.h> <gki.h> <gset.h> <mach.h>\
<math.h>
t_gkixt.x <gki.h>
t_graph.x <config.h> <ctype.h> <error.h> <fset.h> <gset.h>\
<imhdr.h> <mach.h> <xwhen.h> <mwset.h>
t_hafton.x <config.h> <error.h> <fset.h> <gset.h> <imhdr.h>\
<mach.h> <xwhen.h>
t_implot.x <ctype.h> <error.h> <gset.h> <imhdr.h> <mach.h>\
<mwset.h>
t_pcol.x <gset.h> <imhdr.h> <mach.h> <mwset.h>
t_pcols.x <gset.h> <imhdr.h> <mach.h> <mwset.h>
t_pradprof.x <gset.h> <imhdr.h>
t_prow.x <gset.h> <imhdr.h> <mach.h> <mwset.h>
t_prows.x <gset.h> <imhdr.h> <mach.h> <mwset.h>
t_pvector.x <gset.h> <imhdr.h> <mach.h> <imset.h> <math.h>\
<math/iminterp.h>
t_surface.x <config.h> <error.h> <fset.h> <gset.h> <imhdr.h>\
<mach.h> <xwhen.h>
t_velvect.x <config.h> <error.h> <fset.h> <gset.h> <imhdr.h>\
<mach.h> <xwhen.h>
vport.x <gset.h>
;
|