2008-05-01 19:33:33 +04:00
|
|
|
# $NetBSD: Makefile,v 1.1 2008/05/01 15:33:33 jmmv Exp $
|
|
|
|
|
|
|
|
NOLINT= # defined
|
2007-11-12 17:56:24 +03:00
|
|
|
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
2008-05-01 19:33:33 +04:00
|
|
|
LIB= atf-c++
|
|
|
|
LDADD= -L${.OBJDIR}/../libatf-c -latf-c
|
|
|
|
NOPIC= # defined; interface is still too unstable
|
2007-11-12 17:56:24 +03:00
|
|
|
|
|
|
|
SRCDIR= ${NETBSDSRCDIR}/dist/atf
|
|
|
|
.PATH: ${SRCDIR}
|
2008-05-01 19:33:33 +04:00
|
|
|
.PATH: ${SRCDIR}/atf-c++
|
2007-11-12 17:56:24 +03:00
|
|
|
|
2008-05-01 19:33:33 +04:00
|
|
|
CPPFLAGS+= -I${.CURDIR}/../libatf-c
|
2007-11-12 17:56:24 +03:00
|
|
|
CPPFLAGS+= -I.
|
|
|
|
|
|
|
|
CPPFLAGS+= -DHAVE_CONFIG_H
|
|
|
|
|
|
|
|
WARNS?= 2
|
|
|
|
|
|
|
|
SRCS= application.cpp \
|
|
|
|
atffile.cpp \
|
|
|
|
config.cpp \
|
|
|
|
env.cpp \
|
|
|
|
exceptions.cpp \
|
|
|
|
expand.cpp \
|
|
|
|
formats.cpp \
|
|
|
|
fs.cpp \
|
|
|
|
io.cpp \
|
|
|
|
parser.cpp \
|
2008-02-04 23:32:11 +03:00
|
|
|
signals.cpp \
|
2007-11-12 17:56:24 +03:00
|
|
|
tests.cpp \
|
|
|
|
text.cpp \
|
|
|
|
ui.cpp \
|
|
|
|
user.cpp
|
|
|
|
|
|
|
|
INCS= application.hpp \
|
|
|
|
atffile.hpp \
|
|
|
|
config.hpp \
|
|
|
|
env.hpp \
|
|
|
|
exceptions.hpp \
|
|
|
|
expand.hpp \
|
|
|
|
formats.hpp \
|
|
|
|
fs.hpp \
|
|
|
|
io.hpp \
|
|
|
|
macros.hpp \
|
|
|
|
parser.hpp \
|
|
|
|
sanity.hpp \
|
2008-02-04 23:32:11 +03:00
|
|
|
signals.hpp \
|
2007-11-12 17:56:24 +03:00
|
|
|
tests.hpp \
|
|
|
|
text.hpp \
|
|
|
|
ui.hpp \
|
|
|
|
user.hpp \
|
|
|
|
utils.hpp
|
2008-05-01 19:33:33 +04:00
|
|
|
INCSDIR= /usr/include/atf-c++
|
2007-11-12 17:56:24 +03:00
|
|
|
|
2008-05-01 19:33:33 +04:00
|
|
|
INCS+= atf-c++.hpp
|
|
|
|
INCSDIR_atf-c++.hpp=/usr/include
|
2007-11-12 17:56:24 +03:00
|
|
|
|
|
|
|
MAN= # empty
|
|
|
|
|
|
|
|
.include <bsd.lib.mk>
|