#ident "@(#)mk-.id 1.10 98/10/13 " ########################################################################### # Written 1996 by J. Schilling ########################################################################### # # Name of make program (make/gmake/smake) # ########################################################################### # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; see the file COPYING. If not, write to # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. ########################################################################### MAKEPROG= make # Sun make ########################################################################### # # standard (automatic) machine identification # ########################################################################### # # XP_ARCH = uname -p = mach # Processor (sparc/mc68020) # XK_ARCH = uname -m = arch -k # Kernel (sun3/sun4c/sun4m) # XM_ARCH = arch ~ arch -k # Machine (sun3/sun4) # ########################################################################### XP_ARCH:sh= (mach || uname -p || true)2>/dev/null | tr '[A-Z]' '[a-z]' | tr ', /\\()"' ',------' XK_ARCH:sh= uname -m | tr '[A-Z]' '[a-z]' | tr ', /\\()"' ',------' XM_ARCH:sh= (arch || /usr/ucb/arch || true)2>/dev/null | tr '[A-Z]' '[a-z]' | tr ', /\\()"' ',------' P_ARCH= $(XP_ARCH) K_ARCH= $(XK_ARCH) M_ARCH= $(XM_ARCH) _XP_ARCH= $(XP_ARCH:unknown=$(K_ARCH)) _P_ARCH= $(_UNIQ)$(_XP_ARCH) __P_ARCH= $(_P_ARCH:$(_UNIQ)=$(K_ARCH)) P_ARCH= $(__P_ARCH:$(_UNIQ)%=%) _M_ARCH= $(_UNIQ)$(XM_ARCH) __M_ARCH= $(_M_ARCH:$(_UNIQ)=$(K_ARCH)) M_ARCH= $(__M_ARCH:$(_UNIQ)%=%) OSNAME:sh= uname -s | tr '[A-Z]' '[a-z]' | tr ', /\\()"' ',------' OSREL:sh= uname -r | tr '[A-Z]' '[a-z]' | tr ', /\\()"' ',------'