xref: /dflybsd-src/lib/libbluetooth/Makefile (revision 86d7f5d305c6adaa56ff4582ece9859d73106103)
1*86d7f5d3SJohn Marino# $NetBSD: Makefile,v 1.3 2007/05/28 12:06:18 tls Exp $
2*86d7f5d3SJohn Marino
3*86d7f5d3SJohn MarinoSYSDIR= ${.CURDIR}/../../sys/
4*86d7f5d3SJohn Marino
5*86d7f5d3SJohn MarinoLIB=		bluetooth
6*86d7f5d3SJohn MarinoSHLIB_MAJOR=	3
7*86d7f5d3SJohn MarinoSRCS=		bluetooth.c devaddr.c
8*86d7f5d3SJohn MarinoMAN=		bluetooth.3
9*86d7f5d3SJohn Marino
10*86d7f5d3SJohn MarinoCFLAGS+=	-I${.CURDIR} -I${SYSDIR}
11*86d7f5d3SJohn Marino
12*86d7f5d3SJohn MarinoINCS=		bluetooth.h
13*86d7f5d3SJohn MarinoINCSDIR=	/usr/include
14*86d7f5d3SJohn Marino
15*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_gethostbyname.3
16*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_gethostbyaddr.3
17*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_gethostent.3
18*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_sethostent.3
19*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_endhostent.3
20*86d7f5d3SJohn Marino
21*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_getprotobyname.3
22*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_getprotobynumber.3
23*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_getprotoent.3
24*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_setprotoent.3
25*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_endprotoent.3
26*86d7f5d3SJohn Marino
27*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_ntoa.3
28*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_aton.3
29*86d7f5d3SJohn Marino
30*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_devaddr.3
31*86d7f5d3SJohn MarinoMLINKS+=	bluetooth.3 bt_devname.3
32*86d7f5d3SJohn Marino
33*86d7f5d3SJohn MarinoCFLAGS+=	-I${.CURDIR} -I${SYSDIR}
34*86d7f5d3SJohn Marino
35*86d7f5d3SJohn Marino.include <bsd.lib.mk>
36