blob: d385730e39e5f013010abd45955556ec68ad59f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# $NetBSD: Makefile,v 1.10 2021/04/25 23:41:23 christos Exp $
# $FreeBSD: src/sys/modules/dtrace/Makefile,v 1.6.2.1 2009/08/03 08:13:06 kensmith Exp $
.include <bsd.own.mk>
SUBDIR= dtrace sdt fbt lockstat profile syscall
.if ${MACHINE_ARCH} == "x86_64" || ${MACHINE_MIPS64}
SUBDIR+= netbsd32_syscall
.endif
.if ${MACHINE_ARCH} != "aarch64" && ${MACHINE_CPU} != "mips"
SUBDIR+= linux_syscall
.endif
.if ${MACHINE_ARCH} == "x86_64"
SUBDIR+= linux32_syscall
.endif
.include <bsd.subdir.mk>
|