Deleted Added
sdiff udiff text old ( 211725 ) new ( 211935 )
full compact
1# $FreeBSD: head/usr.bin/truss/Makefile 211725 2010-08-23 22:24:11Z imp $
2
3NO_WERROR=
4PROG= truss
5SRCS= main.c setup.c syscalls.c syscalls.h ioctl.c ${MACHINE_CPUARCH}-fbsd.c
6
7CFLAGS+= -I${.CURDIR} -I.
8CLEANFILES= syscalls.master syscalls.h ioctl.c
9
10.SUFFIXES: .master
11
12syscalls.master: ${.CURDIR}/../../sys/kern/syscalls.master
13 cat ${.ALLSRC} > syscalls.master
14

--- 33 unchanged lines hidden (view full) ---

48fbsd32-syscalls.master: ${.CURDIR}/../../sys/compat/freebsd32/syscalls.master
49 cat ${.ALLSRC} > ${.TARGET}
50
51freebsd32_syscalls.h: fbsd32-syscalls.master
52 /bin/sh ${.CURDIR}/../../sys/kern/makesyscalls.sh ${.ALLSRC} \
53 ${.CURDIR}/fbsd32.conf
54.endif
55
56.include <bsd.prog.mk>