Makefile revision 1.1
1# $NetBSD: Makefile,v 1.1 2006/06/19 15:44:56 gdamore Exp $
2
3PROG=		bthcid
4MAN=		bthcid.8
5SRCS=		bthcid.c hci.c client.c config.c
6
7CPPFLAGS+=	-D_BTHCID_
8
9DPADD+=		${LIBBLUETOOTH} ${LIBEVENT} ${LIBUTIL}
10LDADD+=		-lbluetooth -levent -lutil
11
12.include <bsd.prog.mk>
13