blob: f78b672a9f60ce52c98f269ad17df7808c79402f (
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
|
# Make the SOFTOOLS package.
$call relink
$exit
update:
$call relink
$call install
;
relink:
$update libpkg.a
$omake x_softools.x
$link x_softools.o libpkg.a -o xx_softools.e
;
install:
$move xx_softools.e bin$x_softools.e
libpkg.a:
memchk.x <ctype.h>
mktags.x <ctotok.h> <ctype.h> <error.h>
tgutil.x <ctotok.h> <ctype.h> <error.h>
;
|