blob: 0b47b87f27766e38b74176c970599921a51aacb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# $NetBSD: Makefile,v 1.1 2008/05/01 15:33:33 jmmv Exp $
NOLINT= # defined
.include <bsd.own.mk>
LIB= atf-c++
LDADD= -L${.OBJDIR}/../libatf-c -latf-c
NOPIC= # defined; interface is still too unstable
SRCDIR= ${NETBSDSRCDIR}/dist/atf
.PATH: ${SRCDIR}
.PATH: ${SRCDIR}/atf-c++
CPPFLAGS+= -I${.CURDIR}/../libatf-c
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 \
signals.cpp \
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 \
signals.hpp \
tests.hpp \
text.hpp \
ui.hpp \
user.hpp \
utils.hpp
INCSDIR= /usr/include/atf-c++
INCS+= atf-c++.hpp
INCSDIR_atf-c++.hpp=/usr/include
MAN= # empty
.include <bsd.lib.mk>
|