Home | History | Annotate | Line # | Download | only in atf-report
Makefile revision 1.4.2.1
      1 # $NetBSD: Makefile,v 1.4.2.1 2011/03/05 15:08:45 bouyer 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 DPADD+=		${LIBATF_CXX} ${LIBATF_C}
     15 
     16 CPPFLAGS+=	-DHAVE_CONFIG_H
     17 CPPFLAGS+=	-I${SRCDIR}
     18 
     19 WARNS?=		2
     20 
     21 .include <bsd.prog.mk>
     22