diff options
author | jmg <jmg@FreeBSD.org> | 1998-01-07 06:19:50 +0000 |
---|---|---|
committer | jmg <jmg@FreeBSD.org> | 1998-01-07 06:19:50 +0000 |
commit | 07395e5a81ff961dcf493065e4047f7afefcaeef (patch) | |
tree | 0bbd517ae847cb1fc183be5ff92ea8f8ceb80ae2 /usr.bin/truss/Makefile | |
parent | cbf538c65f55c44d6b75f7ecb922cf0dbe5fc3f2 (diff) | |
download | FreeBSD-src-07395e5a81ff961dcf493065e4047f7afefcaeef.zip FreeBSD-src-07395e5a81ff961dcf493065e4047f7afefcaeef.tar.gz |
include sys so it builds on 2.2.x
also, fix misspelling of -1 (as EOF for getopt)
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 63172a8..e57704f 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. +CFLAGS+= -I${.CURDIR} -I. -I${.CURDIR}/../../sys CLEANFILES+=i386l-syscalls.master syscalls.master linux_syscalls.h \ syscalls.h ioctl.c |