# # 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 # sgi= Machine is a Silicon Graphics mips= .. on a MIPS chip unix= It runs UNIX SYSV= ... of the System V flavor. #ifndef SGI_IRIX4 # check for IRIX5.x _version != /bin/uname -r #if !empty(_version:M[56].*) SVR4= ... and even of the Release 4 kind #endif #undef _version # non-standard paths CC = /usr/bin/cc AS = /usr/bin/as AR = /usr/bin/ar LD = /usr/bin/ld #else SGI_IRIX4 CC = SGI_IRIX4=1 /usr/bin/cc AS = SGI_IRIX4=1 /usr/bin/as AR = TOOLROOT=/usr/irix4 /usr/irix4/usr/bin/ar LD = TOOLROOT=/usr/irix4 /usr/irix4/usr/bin/ld YACC = TOOLROOT=/usr/irix4 /usr/irix4/usr/bin/yacc LEX = TOOLROOT=/usr/irix4 /usr/irix4/usr/bin/lex LINT = TOOLROOT=/usr/irix4 /usr/irix4/usr/bin/lint .SUFFIXES : .h .a .INCLUDES : .h .LIBS : .a .PATH.h : /usr/irix4/usr/include .PATH.a : /usr/irix4/usr/lib #endif SGI_IRIX4 .