Subversion Repositories planix.SVN

Rev

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

Rev Author Line No. Line
2 - 1
APE=/sys/src/ape
2
<$APE/config
3
 
4
DIRS=gen math plan9 posix stdio syscall
5
 
6
default:V:	all
7
 
8
install all:V:
9
	for(i in $DIRS $objtype)@{
10
		echo $i
11
		cd $i
12
		mk $MKFLAGS $target
13
	}
14
 
15
installall:V:
16
	for(objtype in $CPUS) mk $MKFLAGS install
17
 
18
 
19
clean nuke:V:
20
	for(i in $DIRS $CPUS)@{
21
		echo $i
22
		cd $i
23
		mk $MKFLAGS $target
24
	}