Subversion Repositories planix.SVN

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
</$objtype/mkfile
2
 
3
# order matters here.  build lib first and usbd last.
4
DIRS=\
5
	lib\
6
	audio\
7
	disk\
8
	ether\
9
	kb\
10
	print\
11
	serial\
12
	usbd\
13
 
14
UPDATE=\
15
	mkfile\
16
 
17
default:V: all
18
 
19
none:VQ:
20
	echo mk all, install, installall, safeinstall, safeinstallall, clean, nuke, or update
21
 
22
all clean nuke:VQ:
23
	for (i in $DIRS) @{
24
		cd $i && echo $i: && mk $target
25
	}
26
 
27
install installall safeinstall safeinstallall:V:
28
	for (i in $DIRS) @{
29
		cd $i && mk $target
30
	}
31
	cp probe /$objtype/bin/usb/probe
32
 
33
update:V:
34
	update $UPDATEFLAGS $UPDATE
35
	for (i in $DIRS) @{
36
		echo update $i
37
		cd $i && mk 'UPDATEFLAGS='$"UPDATEFLAGS update
38
	}