~moody/iso

60ef0ce722709a42cb91d86ba65f163aaab64811 — Jacob Moody 1 year, 8 months ago e4322f4
add README and mkfile
2 files changed, 33 insertions(+), 0 deletions(-)

A README
A mkfile
A README => README +18 -0
@@ 0,0 1,18 @@
This repo provides a /cfg/$sysname for a nightly iso builder.
Code and generated files are stored in /usr/build.

The following hierarchy is assumed:
/usr/build/
	code/
		plan9front/
	www/
		9front/

code/plan9front should be setup to be the plan9front repo.
www/ is web root.

To install:
	; cd /cfg
	; git/clone $url $sysname
	; cd $sysname
	; mk install

A mkfile => mkfile +15 -0
@@ 0,0 1,15 @@
</$objtype/mkfile

SRC=\
	tcp80\
	execfs\

all:V:
	# nothing

install:V:
	for(i in $SRC)@{
		cd src/$i
		mk install
		mk clean
	}