xref: /freebsd/usr.bin/truss/Makefile (revision d0aec74836fef7ed551fe8edb24639c0f86b908c)
1# $FreeBSD$
2
3#NO_WERROR=
4PROG=	truss
5SRCS=	main.c setup.c syscalls.c
6
7LIBADD=	sysdecode
8
9#CFLAGS+= -I${.CURDIR} -I. -I${SRCTOP}/sys
10CFLAGS+= -I${SRCTOP}/sys
11
12ABIS+=		freebsd
13# Each ABI is expected to have an ABI.c, MACHINE_ARCH-ABI.c or
14# MACHINE_CPUARCH-ABI.c file that will be used to map the syscall arguments.
15.if ${MACHINE_ARCH} == "aarch64"
16ABIS+=		cloudabi32
17ABIS+=		cloudabi64
18.endif
19.if ${MACHINE_CPUARCH} == "i386"
20ABIS+=		i386-linux
21.endif
22.if ${MACHINE_CPUARCH} == "amd64"
23ABIS+=		amd64-linux
24ABIS+=		amd64-linux32
25ABIS+=		freebsd32
26ABIS+=		cloudabi32
27ABIS+=		cloudabi64
28.endif
29.if ${MACHINE_ARCH} == "powerpc64"
30ABIS+=		freebsd32
31.endif
32
33.for abi in ${ABIS}
34# Find the right file to handle this ABI.
35abi_src=
36ABI_SRCS=	${abi}.c ${MACHINE_ARCH}-${abi}.c ${MACHINE_CPUARCH}-${abi}.c
37.for f in ${ABI_SRCS}
38.if exists(${.CURDIR}/${f}) && empty(abi_src)
39abi_src=	${f}
40.endif
41.endfor
42SRCS:=		${SRCS} ${abi_src}
43.endfor
44
45.include <bsd.prog.mk>
46