blob: ab60e45b697ec13597e93892d9d3931185d3a9d8 (
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
|
# SCOMBINE
$call relink
$exit
update:
$call relink
$call install
;
relink:
$update libpkg.a
$omake x_scombine.x
$link x_scombine.o libpkg.a -lsmw -lxtools -liminterp \
-o xx_scombine.e
;
install:
$move xx_scombine.e noaobin$x_scombine.e
;
libpkg.a:
@generic
icgdata.x <smw.h> icombine.com icombine.h
iclog.x <smw.h> icombine.com icombine.h <mach.h>
icombine.x <smw.h> icombine.com <mach.h> icombine.h
icscale.x <smw.h> icombine.com icombine.h <ctype.h> <error.h>\
<imhdr.h> <imset.h>
icstat.x <smw.h> icombine.com icombine.h
icsum.x icombine.com icombine.h
t_scombine.x <smw.h> icombine.h icombine.com <error.h> <imhdr.h>\
<mach.h>
;
|