: load -O -s master.c
: rm -f     /usr/bin/master
: mv  a.out /usr/bin/master
: 
: load -s -O newgrp.c
: rm -f     /bin/newgrp
: mv  a.out /bin/newgrp
: 
: load -O -s opser.c
: rm -f     /etc/opser
: mv  a.out /etc/opser
: 
: load -O -s -n pack.c
: rm -f     /bin/pack
: mv  a.out /bin/pack
: 
: load -O -s unpack.c
: rm -f     /bin/unpack
: mv  a.out /bin/unpack
: 
: load -O -s pcat.c
: rm -f     /bin/pcat
: mv a.out  /bin/pcat
: 
: load -s -n -O proto.c
: rm -f     /usr/bin/proto  /usr/bin/la
: mv  a.out /usr/bin/proto
: ln /usr/bin/proto /usr/bin/la
: 
: load -O -s -n remind.c
: rm -f     /bin/remind
: mv  a.out /bin/remind
: chown root /bin/remind
: chmod 04555 /bin/remind
: 
: load -s -O ss.c
: rm -f     /bin/ss
: mv  a.out /bin/ss
: : not virtual terminal ss
: 
: as write.s
: ld -s a.out -l
: rm -f     /bin/write
: mv  a.out /bin/write
: 
: cc -O -s syms.c
: rm -f    /bin/syms
: mv a.out /bin/syms
: 
: cc -s -O notcrt.c
: rm -f    /etc/notcrt
: mv a.out /etc/notcrt
: 
: cc -s -O name.c
: rm -f    /usr/bin/name
: mv a.out /usr/bin/name
: 
: 
: cc -s -O space.c
: rm -f    /usr/bin/space  /usr/bin/indent
: mv a.out /usr/bin/space
: ln /usr/bin/space /usr/bin/indent
: 
: cc -s -O sysfix.c
: rm -f    /usr/bin/sysfix
: mv a.out /usr/bin/sysfix
: 
: cc -s -O tmpread.c
: rm -f    /usr/bin/tmpread
: mv a.out /usr/bin/tmpread
: 
: cc -s -O untab.c
: rm -f    /usr/bin/untab
: mv a.out /usr/bin/untab

: who is recompiled to pick up (Pacific) ctime.o from the C library
: cc -O -s who.c
: rm -f /bin/who
: mv a.out /bin/who
