Makefile revision 1.7
1#	$NetBSD: Makefile,v 1.7 2019/12/03 22:10:56 jmcneill Exp $
2# $FreeBSD: src/sys/modules/dtrace/Makefile,v 1.6.2.1 2009/08/03 08:13:06 kensmith Exp $
3
4.include <bsd.own.mk>
5
6SUBDIR=		dtrace sdt fbt lockstat profile syscall
7
8.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
9SUBDIR+=	linux_syscall
10.endif
11
12.if ${MACHINE_ARCH} == "x86_64"
13SUBDIR+=	netbsd32_syscall
14SUBDIR+=	linux32_syscall
15.endif
16
17.include <bsd.subdir.mk>
18