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