xref: /freebsd/lib/libbluetooth/Makefile (revision b00ab754)
1# $Id: Makefile,v 1.5 2003/07/22 18:38:04 max Exp $
2# $FreeBSD$
3
4PACKAGE=	lib${LIB}
5LIB=		bluetooth
6MAN=		bluetooth.3
7
8WARNS?=		2
9CFLAGS+=	-I${.CURDIR} -I${SRCTOP}/sys
10
11SHLIB_MAJOR=	4
12
13SRCS=		bluetooth.c dev.c hci.c
14INCS=		bluetooth.h
15
16MLINKS+=	bluetooth.3 bt_gethostbyname.3
17MLINKS+=	bluetooth.3 bt_gethostbyaddr.3
18MLINKS+=	bluetooth.3 bt_gethostent.3
19MLINKS+=	bluetooth.3 bt_sethostent.3
20MLINKS+=	bluetooth.3 bt_endhostent.3
21
22MLINKS+=	bluetooth.3 bt_getprotobyname.3
23MLINKS+=	bluetooth.3 bt_getprotobynumber.3
24MLINKS+=	bluetooth.3 bt_getprotoent.3
25MLINKS+=	bluetooth.3 bt_setprotoent.3
26MLINKS+=	bluetooth.3 bt_endprotoent.3
27
28MLINKS+=	bluetooth.3 bt_ntoa.3
29MLINKS+=	bluetooth.3 bt_aton.3
30
31MLINKS+=	bluetooth.3 bt_devaddr.3
32MLINKS+=	bluetooth.3 bt_devname.3
33
34MLINKS+=	bluetooth.3 bt_devinfo.3
35MLINKS+=	bluetooth.3 bt_devenum.3
36
37MLINKS+=	bluetooth.3 bt_devopen.3
38MLINKS+=	bluetooth.3 bt_devclose.3
39MLINKS+=	bluetooth.3 bt_devsend.3
40MLINKS+=	bluetooth.3 bt_devreq.3
41MLINKS+=	bluetooth.3 bt_devfilter.3
42MLINKS+=	bluetooth.3 bt_devfilter_pkt_set.3
43MLINKS+=	bluetooth.3 bt_devfilter_pkt_clr.3
44MLINKS+=	bluetooth.3 bt_devfilter_pkt_tst.3
45MLINKS+=	bluetooth.3 bt_devfilter_evt_set.3
46MLINKS+=	bluetooth.3 bt_devfilter_evt_clr.3
47MLINKS+=	bluetooth.3 bt_devfilter_evt_tst.3
48MLINKS+=	bluetooth.3 bt_devinquiry.3
49
50MLINKS+=	bluetooth.3 bdaddr_same.3
51MLINKS+=	bluetooth.3 bdaddr_any.3
52MLINKS+=	bluetooth.3 bdaddr_copy.3
53
54.include <bsd.lib.mk>
55