blob: 30b8f618e5c88f28c63c2dfc670e5c7ab0edeb71 (
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
|
# Make the VO test package compiled tasks.
$checkout libvo.a vobin$
$call relink
$checkin libvo.a vobin$
$exit
update:
$call relink
$call install
;
relink:
$set LIBS = "-lvo"
$update libpkg.a
$omake x_votest.x
$link x_votest.o libpkg.a $(LIBS) -o xx_votest.e
;
install:
$move xx_vvotest.e vobin$x_votest.e
;
libpkg.a:
$set XFLAGS = "$(XFLAGS) -g -q"
;
|