Home | History | Annotate | Line # | Download | only in sdpd
      1  1.5   plunky # $NetBSD: Makefile,v 1.5 2009/05/12 10:05:06 plunky Exp $
      2  1.3      tls 
      3  1.3      tls USE_FORT?= yes	# network server
      4  1.1  gdamore 
      5  1.4   plunky PROG=	sdpd
      6  1.4   plunky MAN=	sdpd.8
      7  1.5   plunky SRCS=	db.c log.c main.c record.c server.c service.c
      8  1.5   plunky 
      9  1.5   plunky DPADD+=	${LIBBLUETOOTH}
     10  1.5   plunky LDADD+=	-lbluetooth
     11  1.5   plunky 
     12  1.5   plunky .include <bsd.own.mk>
     13  1.5   plunky 
     14  1.5   plunky .if (${SDP_COMPAT:Uyes} != "no")
     15  1.5   plunky SRCS+=		compat.c
     16  1.5   plunky CPPFLAGS+=	-DSDP_COMPAT
     17  1.5   plunky 
     18  1.5   plunky # only needed in SDP_COMPAT
     19  1.5   plunky .if (${USE_INET6} != "no")
     20  1.5   plunky CPPFLAGS+=	-DINET6
     21  1.5   plunky .endif
     22  1.5   plunky .endif
     23  1.1  gdamore 
     24  1.1  gdamore .include <bsd.prog.mk>
     25