24 lines
434 B
Makefile
24 lines
434 B
Makefile
# $NetBSD: Makefile,v 1.1 2013/02/19 06:04:42 jmmv Exp $
|
|
|
|
#NOLINT= # defined
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
LIB= atf_tester
|
|
LIBISPRIVATE= yes
|
|
|
|
SRCDIR= ${NETBSDSRCDIR}/external/bsd/kyua-testers/dist
|
|
.PATH: ${SRCDIR}
|
|
|
|
CPPFLAGS+= -I${.CURDIR}/../libtester # For config.h and defs.h.
|
|
CPPFLAGS+= -I${SRCDIR} # For non-installed headers.
|
|
|
|
CPPFLAGS+= -DHAVE_CONFIG_H
|
|
|
|
WARNS?= 5
|
|
|
|
SRCS= atf_list.c
|
|
SRCS+= atf_result.c
|
|
|
|
.include <bsd.lib.mk>
|