diff options
author | sef <sef@FreeBSD.org> | 1998-01-09 00:22:50 +0000 |
---|---|---|
committer | sef <sef@FreeBSD.org> | 1998-01-09 00:22:50 +0000 |
commit | 9a6b1478808c6a57d28b37ffb632751f71a10012 (patch) | |
tree | bc9dac825813e25a3301520314428eddd4f08ad3 /usr.bin/truss/Makefile | |
parent | d0bda339f4e7c39f2e5ef86d6bec50b670000c20 (diff) | |
download | FreeBSD-src-9a6b1478808c6a57d28b37ffb632751f71a10012.zip FreeBSD-src-9a6b1478808c6a57d28b37ffb632751f71a10012.tar.gz |
Get rid of the bogus include -- it is incomplete (as it doesn't handle
anything other than <sys/*.h>), and unnecessary in most cases. (The
situations where it is necesary can be dealt with by manually-made symlinks,
which is acceptable since they should only occur during testing. Remember:
the tree does not compile well if you do not have matching header files
installed. Half-baked -I directives don't cover enough of the cases.)
Diffstat (limited to 'usr.bin/truss/Makefile')
-rw-r--r-- | usr.bin/truss/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/truss/Makefile b/usr.bin/truss/Makefile index e57704f..63172a8 100644 --- a/usr.bin/truss/Makefile +++ b/usr.bin/truss/Makefile @@ -1,7 +1,7 @@ PROG= truss SRCS= main.c setup.c i386-fbsd.c i386-linux.c \ syscalls.c linux_syscalls.h syscalls.h ioctl.c -CFLAGS+= -I${.CURDIR} -I. -I${.CURDIR}/../../sys +CFLAGS+= -I${.CURDIR} -I. CLEANFILES+=i386l-syscalls.master syscalls.master linux_syscalls.h \ syscalls.h ioctl.c |