blob: 7a5a6dfeb4d53d1c8b2a011bba08d5e041655072 (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# $NetBSD: Makefile,v 1.7 2015/08/20 10:06:21 joerg Exp $
.include <bsd.init.mk>
.PATH: ${LIBCXX_SRCDIR}/include
INCSDIR= /usr/include/c++
INCS= __bit_reference \
__config \
__debug \
__functional_03 \
__functional_base \
__functional_base_03 \
__hash_table \
__locale \
__mutex_base \
__split_buffer \
__sso_allocator \
__std_stream \
__tree \
__tuple \
__undef___deallocate \
__undef_min_max \
algorithm \
array \
atomic \
bitset \
cassert \
ccomplex \
cctype \
cerrno \
cfenv \
cfloat \
chrono \
cinttypes \
ciso646 \
climits \
clocale \
cmath \
codecvt \
complex \
complex.h \
condition_variable \
csetjmp \
csignal \
cstdarg \
cstdbool \
cstddef \
cstdint \
cstdio \
cstdlib \
cstring \
ctgmath \
ctime \
cwchar \
cwctype \
deque \
exception \
forward_list \
fstream \
functional \
future \
initializer_list \
iomanip \
ios \
iosfwd \
iostream \
istream \
iterator \
limits \
list \
locale \
map \
memory \
mutex \
new \
numeric \
ostream \
queue \
random \
ratio \
regex \
scoped_allocator \
set \
shared_mutex \
sstream \
stack \
stdexcept \
streambuf \
string \
strstream \
system_error \
tgmath.h \
thread \
tuple \
typeindex \
typeinfo \
type_traits \
unordered_map \
unordered_set \
utility \
valarray \
vector
INCS+= cxxabi.h
INCS+= ext/__hash \
ext/hash_map \
ext/hash_set
INCS+= experimental/__config \
experimental/algorithm \
experimental/chrono \
experimental/dynarray \
experimental/optional \
experimental/ratio \
experimental/string_view \
experimental/system_error \
experimental/tuple \
experimental/type_traits \
experimental/utility
cxxabi.h: ${LIBCXXRT_SRCDIR}/src/cxxabi.h
cp ${LIBCXXRT_SRCDIR}/src/cxxabi.h .
DPSRCS+= cxxabi.h
CLEANFILES+= cxxabi.h
.include <bsd.inc.mk>
.include <bsd.clean.mk>
.include <bsd.obj.mk>
|