diff options
| -rw-r--r-- | lib/libsdp/Makefile | 2 | ||||
| -rw-r--r-- | usr.sbin/bluetooth/Makefile | 3 | ||||
| -rw-r--r-- | usr.sbin/bluetooth/sdpd/Makefile | 13 |
3 files changed, 16 insertions, 2 deletions
diff --git a/lib/libsdp/Makefile b/lib/libsdp/Makefile index f93c690d5e70..c4ee1957bcd3 100644 --- a/lib/libsdp/Makefile +++ b/lib/libsdp/Makefile @@ -5,7 +5,7 @@ LIB= sdp MAN= sdp.3 WARNS?= 2 -CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../../sys +CFLAGS+= -I${.CURDIR} SHLIB_MAJOR= 1 diff --git a/usr.sbin/bluetooth/Makefile b/usr.sbin/bluetooth/Makefile index 916a1aeae32c..23c03f7b6a36 100644 --- a/usr.sbin/bluetooth/Makefile +++ b/usr.sbin/bluetooth/Makefile @@ -10,7 +10,8 @@ SUBDIR= \ l2control \ l2ping \ rfcomm_pppd \ - sdpcontrol + sdpcontrol \ + sdpd .include <bsd.subdir.mk> diff --git a/usr.sbin/bluetooth/sdpd/Makefile b/usr.sbin/bluetooth/sdpd/Makefile new file mode 100644 index 000000000000..2b8b49542403 --- /dev/null +++ b/usr.sbin/bluetooth/sdpd/Makefile @@ -0,0 +1,13 @@ +# $Id: Makefile,v 1.1 2004/01/20 21:27:55 max Exp $ +# $FreeBSD$ + +PROG= sdpd +MAN= sdpd.8 +SRCS= bgd.c dun.c ftrn.c irmc.c irmc_command.c lan.c log.c main.c \ + opush.c profile.c provider.c sar.c scr.c sd.c server.c sp.c \ + srr.c ssar.c ssr.c sur.c + +CFLAGS+= -I${.CURDIR} +WARNS?= 2 + +.include <bsd.prog.mk> |
