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+= cloudabi64 17.endif 18.if ${MACHINE_CPUARCH} == "i386" 19ABIS+= i386-linux 20.endif 21.if ${MACHINE_CPUARCH} == "amd64" 22ABIS+= amd64-linux 23ABIS+= amd64-linux32 24ABIS+= freebsd32 25ABIS+= cloudabi32 26ABIS+= cloudabi64 27.endif 28.if ${MACHINE_ARCH} == "powerpc64" 29ABIS+= freebsd32 30.endif 31 32.for abi in ${ABIS} 33# Find the right file to handle this ABI. 34abi_src= 35ABI_SRCS= ${abi}.c ${MACHINE_ARCH}-${abi}.c ${MACHINE_CPUARCH}-${abi}.c 36.for f in ${ABI_SRCS} 37.if exists(${.CURDIR}/${f}) && empty(abi_src) 38abi_src= ${f} 39.endif 40.endfor 41SRCS:= ${SRCS} ${abi_src} 42.endfor 43 44.include <bsd.prog.mk> 45