1# $NetBSD: Makefile,v 1.1 2009/01/19 07:13:04 jmmv Exp $ 2 3NOLINT= # defined 4 5.include <bsd.own.mk> 6 7LIB= atf-c++ 8LDADD= -L${.OBJDIR}/../libatf-c -latf-c 9NOPIC= # defined; interface is still too unstable 10 11SRCDIR= ${NETBSDSRCDIR}/external/bsd/atf/dist 12.PATH: ${SRCDIR} 13.PATH: ${SRCDIR}/atf-c++ 14 15CPPFLAGS+= -I${.CURDIR}/../libatf-c 16CPPFLAGS+= -I. 17 18CPPFLAGS+= -DHAVE_CONFIG_H 19 20WARNS?= 2 21 22SRCS= application.cpp \ 23 atffile.cpp \ 24 check.cpp \ 25 config.cpp \ 26 env.cpp \ 27 exceptions.cpp \ 28 expand.cpp \ 29 formats.cpp \ 30 fs.cpp \ 31 io.cpp \ 32 parser.cpp \ 33 process.cpp \ 34 signals.cpp \ 35 tests.cpp \ 36 text.cpp \ 37 ui.cpp \ 38 user.cpp 39 40INCS= application.hpp \ 41 atffile.hpp \ 42 check.hpp \ 43 config.hpp \ 44 env.hpp \ 45 exceptions.hpp \ 46 expand.hpp \ 47 formats.hpp \ 48 fs.hpp \ 49 io.hpp \ 50 macros.hpp \ 51 parser.hpp \ 52 process.hpp \ 53 sanity.hpp \ 54 signals.hpp \ 55 tests.hpp \ 56 text.hpp \ 57 ui.hpp \ 58 user.hpp \ 59 utils.hpp 60INCSDIR= /usr/include/atf-c++ 61 62INCS+= atf-c++.hpp 63INCSDIR_atf-c++.hpp=/usr/include 64 65MAN= # empty 66 67.include <bsd.lib.mk> 68