blob: fefd744a893cf1041cb762a76a29ec153d71dad2 (
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
|
# Make the BIAS package.
$call relink
$exit
update:
$call relink
$call install
;
relink:
$update libpkg.a
$call bias
;
install:
$move x_bias1.e noaobin$x_bias.e
;
bias:
$omake x_bias.x
$link x_bias.o libpkg.a -lxtools -lcurfit -o x_bias1.e
;
libpkg.a:
colbias.x <imhdr.h> <imio.h> <pkg/xtanswer.h>\
<pkg/gtools.h>
linebias.x <imhdr.h> <imio.h> <pkg/xtanswer.h>\
<pkg/gtools.h>
;
|