21 lines
391 B
Makefile
21 lines
391 B
Makefile
src9=/n/src9
|
|
scr=/tmp/dist
|
|
|
|
x=`{mkdir -p $scr}
|
|
|
|
cd:V: $scr/plan9.iso
|
|
|
|
clean:V:
|
|
rm -rf $scr
|
|
|
|
$scr/cdstub:D: $src9/386/9bootiso
|
|
mkdir -p $target
|
|
cp $prereq $target
|
|
cp pc/plan9.ini.cd $target/plan9.ini
|
|
|
|
$scr/plan9.iso: $scr/cdstub
|
|
bind -a $src9 $scr/cdstub
|
|
bind /n/empty $scr/cdstub/.hg
|
|
disk/mk9660 -9cj -s $scr/cdstub -B 9bootiso $target
|
|
unmount $scr/cdstub/.hg
|
|
unmount $scr/cdstub
|