blob: 87b4c7924479f9f37fa4833add0ad60a9416d70c (
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
|
# Make the LISTS package
$call relink
$exit
relink:
$set LIBS = "-lxtools"
$update libpkg.a
$omake x_lists.x
$link x_lists.o libpkg.a $(LIBS)
;
clean:
$delete libpkg.a x_lists.o x_lists.e
;
libpkg.a:
table.x <ctype.h>
words.x
tokens.x <ctotok.h>
unique.x
lintran.x <pattern.h> <ctype.h>
columns.x <ctype.h> <chars.h> <error.h>
;
|