ref: 053da17fb4dd47d127127b01728c31d825c46afb
parent: 6c6f09d989e5db7242365e6844c67b618192f996
author: Jacob Moody <moody@posixcafe.org>
date: Sun Jul 23 14:51:36 EDT 2023
add back README and mkfile
--- /dev/null
+++ b/README
@@ -1,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
--- /dev/null
+++ b/mkfile
@@ -1,0 +1,15 @@
+</$objtype/mkfile
+
+SRC=\
+ tcp80\
+ execfs\
+
+all:V:
+ # nothing
+
+install:V:
+ for(i in $SRC)@{
+ cd src/$i
+ mk install
+ mk clean
+ }