# # 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 # sun= Machine is a sun sparc= so it has a Sparc chip. unix= It runs UNIX. # # check for SunOS5.x platform #if !exists(/vmunix) SYSV= This is not only System 5 SVR4= but even Release 4 #endif # # # Provide convenience for restricting exports to certain kernel # architectures. # -D from the command line is translated into .EXPORT attributes. # This assumes customs daemons are started with -attr `arch -k`. # #ifdef sun4 .EXPORT: sun4 #elifdef sun4c .EXPORT: sun4c #elifdef sun4m .EXPORT: sun4m #elifdef sun4u .EXPORT: sun4u #endif # SunOS5.x non-standard program locations #ifdef SVR4 AR = /usr/ccs/bin/ar AS = /usr/ccs/bin/as LD = /usr/ccs/bin/ld YACC = /usr/ccs/bin/yacc LEX = /usr/ccs/bin/lex CC = gcc LINT = : # use statically linked shell for speed SHELL = /sbin/sh #endif .