Blame scsilib/RULES/mk-smake.id

Packit bf707c
#ident "@(#)mk-smake.id	1.4 97/02/18 "
Packit bf707c
###########################################################################
Packit bf707c
# Written 1996 by J. Schilling
Packit bf707c
###########################################################################
Packit bf707c
#
Packit bf707c
# Name of make program (make/gmake/smake)
Packit bf707c
#
Packit bf707c
###########################################################################
Packit bf707c
# This program is free software; you can redistribute it and/or modify
Packit bf707c
# it under the terms of the GNU General Public License as published by
Packit bf707c
# the Free Software Foundation; either version 2, or (at your option)
Packit bf707c
# any later version.
Packit bf707c
#
Packit bf707c
# This program is distributed in the hope that it will be useful,
Packit bf707c
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit bf707c
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit bf707c
# GNU General Public License for more details.
Packit bf707c
# 
Packit bf707c
# You should have received a copy of the GNU General Public License
Packit bf707c
# along with this program; see the file COPYING.  If not, write to
Packit bf707c
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
Packit bf707c
###########################################################################
Packit bf707c
Packit bf707c
MAKEPROG=	$(MAKE_NAME)
Packit bf707c
Packit bf707c
###########################################################################
Packit bf707c
#
Packit bf707c
# standard (automatic) machine identification
Packit bf707c
#
Packit bf707c
###########################################################################
Packit bf707c
#
Packit bf707c
# XP_ARCH = MAKE_ARCH   = uname -p	= mach	  # Processor (sparc/mc68020)
Packit bf707c
# XK_ARCH = MAKE_MACH   = uname -m	= arch -k # Kernel (sun3/sun4c/sun4m)
Packit bf707c
# XM_ARCH = MAKE_M_ARCH = arch		~ arch -k # Machine (sun3/sun4)
Packit bf707c
#
Packit bf707c
###########################################################################
Packit bf707c
Packit bf707c
XP_ARCH=	$(MAKE_ARCH)
Packit bf707c
XK_ARCH=	$(MAKE_MACH)
Packit bf707c
XM_ARCH=	$(MAKE_M_ARCH)
Packit bf707c
Packit bf707c
P_ARCH=		$(XP_ARCH)
Packit bf707c
K_ARCH=		$(XK_ARCH)
Packit bf707c
M_ARCH=		$(XM_ARCH)
Packit bf707c
Packit bf707c
_P_ARCH=	$(_UNIQ)$(XP_ARCH)
Packit bf707c
__P_ARCH=	$(_P_ARCH:$(_UNIQ)=$(MAKE_MACH))
Packit bf707c
P_ARCH=		$(__P_ARCH:$(_UNIQ)%=%)
Packit bf707c
Packit bf707c
_M_ARCH=	$(_UNIQ)$(MAKE_M_ARCH)
Packit bf707c
__M_ARCH=	$(_M_ARCH:$(_UNIQ)=$(MAKE_MACH))
Packit bf707c
M_ARCH=		$(__M_ARCH:$(_UNIQ)%=%)
Packit bf707c
Packit bf707c
HOSTNAME=	$(MAKE_HOST)
Packit bf707c
OSNAME=		$(MAKE_OS)
Packit bf707c
OSDEFS=		$(MAKE_OSDEFS)
Packit bf707c
OSREL=		$(MAKE_OSREL)