From 6c7f392438a03997bf2ab1eb5c72cddfe2a66e93 Mon Sep 17 00:00:00 2001 From: Maksim Yevmenkin Date: Sun, 25 Jan 2004 21:33:59 +0000 Subject: [PATCH] Cleanup CFLAGS in libsdp(3) Makefile Connect sdpd(8) to the build Reviewed by: ru, imp (mentor) --- lib/libsdp/Makefile | 2 +- usr.sbin/bluetooth/Makefile | 3 ++- usr.sbin/bluetooth/sdpd/Makefile | 13 +++++++++++++ 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 usr.sbin/bluetooth/sdpd/Makefile 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 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