Home | History | Annotate | Line # | Download | only in libbluetooth
Makefile revision 1.1
      1 # $NetBSD: Makefile,v 1.1 2006/06/19 15:44:36 gdamore Exp $
      2 
      3 LIB=	bluetooth
      4 
      5 SRCS=	bluetooth.c devaddr.c lexer.l parser.y
      6 MAN=	bluetooth.3 bluetooth.conf.5
      7 
      8 CPPFLAGS+=	-I${.CURDIR}
      9 
     10 LPREFIX=	_btyy
     11 YPREFIX=	_btyy
     12 YHEADER=	1
     13 
     14 INCS=		bluetooth.h
     15 INCSDIR=	/usr/include
     16 
     17 MLINKS+=	bluetooth.3 bt_gethostbyname.3
     18 MLINKS+=	bluetooth.3 bt_gethostbyaddr.3
     19 MLINKS+=	bluetooth.3 bt_gethostent.3
     20 MLINKS+=	bluetooth.3 bt_sethostent.3
     21 MLINKS+=	bluetooth.3 bt_endhostent.3
     22 
     23 MLINKS+=	bluetooth.3 bt_getprotobyname.3
     24 MLINKS+=	bluetooth.3 bt_getprotobynumber.3
     25 MLINKS+=	bluetooth.3 bt_getprotoent.3
     26 MLINKS+=	bluetooth.3 bt_setprotoent.3
     27 MLINKS+=	bluetooth.3 bt_endprotoent.3
     28 
     29 MLINKS+=	bluetooth.3 bt_ntoa.3
     30 MLINKS+=	bluetooth.3 bt_aton.3
     31 
     32 MLINKS+=	bluetooth.3 bt_devaddr.3
     33 MLINKS+=	bluetooth.3 bt_devname.3
     34 
     35 MLINKS+=	bluetooth.3 bt_openconfig.3
     36 MLINKS+=	bluetooth.3 bt_getconfig.3
     37 MLINKS+=	bluetooth.3 bt_freeconfig.3
     38 MLINKS+=	bluetooth.3 bt_eachconfig.3
     39 MLINKS+=	bluetooth.3 bt_closeconfig.3
     40 MLINKS+=	bluetooth.3 bt_printconfig.3
     41 
     42 .include <bsd.lib.mk>
     43