buildscript.sh 191 B

12345678910111213
  1. #!/bin/bash
  2. set -eu
  3. topdir=`pwd`
  4. buildir='~/cs350-os161/os161-1.99'
  5. eval cd $buildir
  6. cd ./kern/compile/ASST$1
  7. bmake depend
  8. bmake
  9. bmake install
  10. eval cd $buildir
  11. bmake
  12. bmake install
  13. cd $topdir