Home | History | Annotate | Line # | Download | only in veriexecctl
Makefile revision 1.12
      1 #	$NetBSD: Makefile,v 1.12 2006/11/28 22:22:03 elad Exp $
      2 
      3 PROG=	veriexecctl
      4 MAN=	veriexecctl.8
      5 SRCS=	veriexecctl_parse.y veriexecctl_conf.l veriexecctl.c
      6 
      7 YHEADER=	1
      8 CPPFLAGS+=	-I${.CURDIR} -I.
      9 DPADD+=		${LIBL} ${LIBPROP}
     10 LDADD+=		-ll -lprop
     11 
     12 .include <bsd.prog.mk>
     13 
     14 .if ${HAVE_GCC} == 4
     15 COPTS+=	-Wno-pointer-sign
     16 .endif
     17