35 lines
937 B
Makefile
35 lines
937 B
Makefile
# $FreeBSD$
|
|
|
|
WARNS?= 2
|
|
NO_WERROR= yes
|
|
PROG= truss
|
|
SRCS= main.c setup.c syscalls.c syscalls.h ioctl.c ${MACHINE_ARCH}-fbsd.c
|
|
.if ${MACHINE_ARCH} == "i386"
|
|
SRCS+= i386-linux.c linux_syscalls.h
|
|
.endif
|
|
|
|
CFLAGS+= -I${.CURDIR} -I.
|
|
CLEANFILES+=i386l-syscalls.master syscalls.master linux_syscalls.h \
|
|
syscalls.h ioctl.c
|
|
|
|
.SUFFIXES: .master
|
|
|
|
i386l-syscalls.master: ${.CURDIR}/../../sys/i386/linux/syscalls.master
|
|
cat ${.ALLSRC} > i386l-syscalls.master
|
|
|
|
linux_syscalls.h: i386l-syscalls.master
|
|
/bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh i386l-syscalls.master \
|
|
${.CURDIR}/i386linux.conf
|
|
|
|
syscalls.master: ${.CURDIR}/../../sys/kern/syscalls.master
|
|
cat ${.ALLSRC} > syscalls.master
|
|
|
|
syscalls.h: syscalls.master
|
|
/bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh syscalls.master \
|
|
${.CURDIR}/i386.conf
|
|
|
|
ioctl.c: ${.CURDIR}/../kdump/mkioctls
|
|
sh ${.CURDIR}/../kdump/mkioctls ${DESTDIR}/usr/include > ${.TARGET}
|
|
|
|
.include <bsd.prog.mk>
|