Home | History | Annotate | Line # | Download | only in atf-report
Makefile revision 1.4
      1 # $NetBSD: Makefile,v 1.4 2010/10/20 09:20:13 jmmv Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 SRCDIR=		${NETBSDSRCDIR}/external/bsd/atf/dist
      6 .PATH:		${SRCDIR}/atf-report
      7 
      8 BINDIR=		/usr/bin
      9 PROG_CXX=	atf-report
     10 SRCS=		atf-report.cpp reader.cpp
     11 MAN=		atf-report.1
     12 
     13 LDADD+=		-latf-c++ -latf-c
     14 
     15 CPPFLAGS+=	-DHAVE_CONFIG_H
     16 CPPFLAGS+=	-I${SRCDIR}
     17 
     18 WARNS?=		2
     19 
     20 .include <bsd.prog.mk>
     21