Makefile revision 1.9
1# $NetBSD: Makefile,v 1.9 2021/04/10 15:34:05 simonb 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} == "x86_64" || !empty(MACHINE_ARCH:Mmips64*) 9SUBDIR+= netbsd32_syscall 10.endif 11 12.if ${MACHINE_ARCH} != "aarch64" && ${MACHINE_CPU} != "mips" 13SUBDIR+= linux_syscall 14.endif 15 16.if ${MACHINE_ARCH} == "x86_64" 17SUBDIR+= linux32_syscall 18.endif 19 20.include <bsd.subdir.mk> 21