# # These are the variables used to specify the nature of the system on which # pmake is running. These names may later be used in #if expressions for # conditional reading of the enclosed portion of the Makefile # unix= It runs UNIX. mips= so it has a MIPS chip. #if exists(/ultrixboot) ultrix= Machine runs DEC Ultrix MIPSEL= and runs in little endian mode #else MIPSEB= and runs in big endian mode #endif # # Use System V Bourne shell if possible, /bin/sh doesn't support error control. # #if defined(ultrix) # if exists(/bin/sh5) .SHELL: name=sh5 path=/bin/sh5 echoFlag=v echo="set -v" quiet="set -" \ filter="set -" errFlag=e hasErrCtl=Yes check="set -e" \ ignore="set +e" # else .SHELL: name=sh path=/bin/sh echoFlag=v echo="set -v" quiet="set -" \ filter="set -" errFlag=e hasErrCtl=No check="echo \"%s\"\n" \ ignore="/bin/sh -c \"%s || exit 0\"\n" # endif sh5 #endif ultrix .