blob: 4c8fcbcb5fd78a80cdf38b25ee624ebb2471ff61 (
plain)
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
|
# $NetBSD: aix.mk,v 1.1 2009/03/22 22:31:46 sno Exp $
#
# AIX binary emulation framework
#
.if !empty(OPSYS:MAIX*)
EMUL_TYPE.aix?= native
.else
EMUL_TYPE.aix?= builtin
.endif
EMUL_MODULES.aix?= # empty
EMULSUBDIR= emul/aix
EMULDIR= ${PREFIX}/${EMULSUBDIR}
OPSYS_EMULDIR= ${_OPSYS_EMULDIR.aix}
# _EMUL_TYPES
# List of recognized AIX types that a user may request.
#
# _EMUL_MODULES
# List of recognized AIX "modules" that packages may request.
#
_EMUL_TYPES= builtin
_EMUL_TYPES+= native
_EMUL_TYPE?= ${EMUL_TYPE.aix}
_EMUL_MODULES= # empty
.if ${_EMUL_TYPE} == "builtin"
EMUL_DISTRO= builtin-aix # managed outside pkgsrc
.elif ${_EMUL_TYPE} == "native"
EMUL_DISTRO= native-aix # native AIX installation
EMULDIR= ${PREFIX}
EMULSUBDIR= # empty
.else
. include "aix-${_EMUL_TYPE}.mk"
.endif
.if (${_EMUL_TYPE} == "builtin") || (${_EMUL_TYPE} == "native")
. for _mod_ in ${_EMUL_MODULES}
DEPENDS_${EMUL_DISTRO}.${_mod_}?= # empty
. endfor
.endif
|