File: mk-smake.id

package info (click to toggle)
star 1.5a67-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 5,600 kB
  • ctags: 4,715
  • sloc: ansic: 37,601; sh: 3,198; makefile: 200
file content (50 lines) | stat: -rw-r--r-- 1,657 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ident "@(#)mk-smake.id	1.4 97/02/18 "
###########################################################################
# Written 1996 by J. Schilling
###########################################################################
#
# Name of make program (make/gmake/smake)
#
###########################################################################
# Copyright Jrg Schilling. All rights reserved.
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License, Version 1.0 only.
# See the file CDDL.Schily.txt in this distribution or
# http://opensource.org/licenses/cddl1.php for details.
###########################################################################

MAKEPROG=	$(MAKE_NAME)

###########################################################################
#
# standard (automatic) machine identification
#
###########################################################################
#
# XP_ARCH = MAKE_ARCH   = uname -p	= mach	  # Processor (sparc/mc68020)
# XK_ARCH = MAKE_MACH   = uname -m	= arch -k # Kernel (sun3/sun4c/sun4m)
# XM_ARCH = MAKE_M_ARCH = arch		~ arch -k # Machine (sun3/sun4)
#
###########################################################################

XP_ARCH=	$(MAKE_ARCH)
XK_ARCH=	$(MAKE_MACH)
XM_ARCH=	$(MAKE_M_ARCH)

P_ARCH=		$(XP_ARCH)
K_ARCH=		$(XK_ARCH)
M_ARCH=		$(XM_ARCH)

_P_ARCH=	$(_UNIQ)$(XP_ARCH)
__P_ARCH=	$(_P_ARCH:$(_UNIQ)=$(MAKE_MACH))
P_ARCH=		$(__P_ARCH:$(_UNIQ)%=%)

_M_ARCH=	$(_UNIQ)$(MAKE_M_ARCH)
__M_ARCH=	$(_M_ARCH:$(_UNIQ)=$(MAKE_MACH))
M_ARCH=		$(__M_ARCH:$(_UNIQ)%=%)

HOSTNAME=	$(MAKE_HOST)
OSNAME=		$(MAKE_OS)
OSDEFS=		$(MAKE_OSDEFS)
OSREL=		$(MAKE_OSREL)