mc @ d073dcc756169e572f54e65f05ba6b4ffaddcde3
#!/bin/sh # this should be a bourne compatible shell script. export PATH=`pwd`:`pwd`/6:`pwd`/muse:$PATH if test `uname` = Plan9; then O=6 export MYR_MUSE=`pwd`/muse/$O.out export MYR_MC=`pwd`/6/$O.out export MYR_RT=`pwd`/rt/_myrrt.$O else export MYR_MUSE=muse export MYR_MC=6m export MYR_RT=`pwd`/rt/_myrrt.o fi if [ -z "$MBLD" ]; then if [ -f obj/mbld/mbld ]; then MBLD=obj/mbld/mbld else MBLD=$(command -v mbld) fi fi if [ -z "$MBLD" ]; then echo 'could not find mbld: did you run "make bootstrap"?' else $MBLD $@ fi