blob: ac2bc171a1f2326751b6506020a0cdc1a79d0e10 (
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 GUIDEMO package.
$call relink
$exit
update:
$call relink
$call install
;
relink:
$set LIBS = ""
$update libpkg.a
$omake x_guidemo.x
$link x_guidemo.o libpkg.a $(LIBS) -o xx_guidemo.e
;
install:
$move xx_guidemo.e bin$x_guidemo.e
;
libpkg.a:
$set XFLAGS = "-cqfx"
hello.x
imbrowse.x <finfo.h> <ctype.h> <diropen.h> <error.h> <gim.h>\
<gset.h> <imhdr.h> <imio.h>
zscale.x <imhdr.h>
;
|