blob: f558872641c436ef789bef22efd74788c908bccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile.application,v 1.1 2002/04/04 11:55:58 tron Exp $
.include "../../mk/bsd.prefs.mk"
LINUX_KERNEL_OSRELEASE= 2.0.38
.if (${OPSYS} == NetBSD) && (${MACHINE_ARCH} == i386)
LINUX_KERNEL_OSRELEASE!= (/sbin/sysctl -n emul.linux.kern.osrelease 2>/dev/null; ${ECHO} 2.0.38) | ${HEAD} -1
.endif
.if (${LINUX_KERNEL_OSRELEASE} == 2.0.38)
SUSE_DIR_PREFIX= suse64
SUSE_VERSION= 6.4
.else
SUSE_DIR_PREFIX= suse
SUSE_VERSION= 7.3
.endif
.if defined(RPM_FILES)
.include "../../emulators/${SUSE_DIR_PREFIX}_linux/Makefile.common"
.else
.include "../../mk/bsd.pkg.mk"
.endif
|