From: Ken Thompson Date: Fri, 18 Jul 1975 12:04:25 +0000 (-0500) Subject: Research V6 development X-Git-Tag: Research-V6~19 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/394268674d27d3c299ed9c079de0161f02cffdaa Research V6 development Work on file usr/sys/run Co-Authored-By: Dennis Ritchie Synthesized-from: v6 --- diff --git a/usr/sys/run b/usr/sys/run new file mode 100644 index 0000000000..411298552c --- /dev/null +++ b/usr/sys/run @@ -0,0 +1,73 @@ +chdir ken +cc -c -O *.c +ar r ../lib1 +rm *.o + +chdir ../dmr +cc -c -O *.c +ar r ../lib2 +rm *.o + +chdir ../conf +as m40.s +mv a.out m40.o +: as m45.s +: mv a.out m45.o +: cc sysfix.c +: mv a.out sysfix +cc mkconf.c +mv a.out mkconf + +mkconf +rk +tm +tc +done + +cc -c c.c +as l.s +ld -x a.out m40.o c.o ../lib1 ../lib2 +: as data.s l.s +: ld -x -r -d a.out m45.o c.o ../lib1 ../lib2 +: nm -ug +: sysfix a.out x +: mv x a.out +cmp a.out /rkunix +cp a.out /rkunix + +mkconf +rp +tm +tc +done + +cc -c c.c +as l.s +ld -x a.out m40.o c.o ../lib1 ../lib2 +: as data.s l.s +: ld -x -r -d a.out m45.o c.o ../lib1 ../lib2 +: nm -ug +: sysfix a.out x +: mv x a.out +cmp a.out /rpunix +cp a.out /rpunix + +mkconf +hp +tm +tc +done + +cc -c c.c +as l.s +ld -x a.out m40.o c.o ../lib1 ../lib2 +: as data.s l.s +: ld -x -r -d a.out m45.o c.o ../lib1 ../lib2 +: nm -ug +: sysfix a.out x +: mv x a.out +cmp a.out /hpunix +cp a.out /hpunix + +rm mkconf c.c l.s a.out *.o +: rm sysfix