xref: /minix/external/bsd/libc++/include/Makefile (revision 83ee113e)
1#	$NetBSD: Makefile,v 1.7 2015/08/20 10:06:21 joerg Exp $
2
3.include <bsd.init.mk>
4
5.PATH: ${LIBCXX_SRCDIR}/include
6
7INCSDIR=	/usr/include/c++
8
9INCS=	__bit_reference \
10	__config \
11	__debug \
12	__functional_03 \
13	__functional_base \
14	__functional_base_03 \
15	__hash_table \
16	__locale \
17	__mutex_base \
18	__split_buffer \
19	__sso_allocator \
20	__std_stream \
21	__tree \
22	__tuple \
23	__undef___deallocate \
24	__undef_min_max \
25	algorithm \
26	array \
27	atomic \
28	bitset \
29	cassert \
30	ccomplex \
31	cctype \
32	cerrno \
33	cfenv \
34	cfloat \
35	chrono \
36	cinttypes \
37	ciso646 \
38	climits \
39	clocale \
40	cmath \
41	codecvt \
42	complex \
43	complex.h \
44	condition_variable \
45	csetjmp \
46	csignal \
47	cstdarg \
48	cstdbool \
49	cstddef \
50	cstdint \
51	cstdio \
52	cstdlib \
53	cstring \
54	ctgmath \
55	ctime \
56	cwchar \
57	cwctype \
58	deque \
59	exception \
60	forward_list \
61	fstream \
62	functional \
63	future \
64	initializer_list \
65	iomanip \
66	ios \
67	iosfwd \
68	iostream \
69	istream \
70	iterator \
71	limits \
72	list \
73	locale \
74	map \
75	memory \
76	mutex \
77	new \
78	numeric \
79	ostream \
80	queue \
81	random \
82	ratio \
83	regex \
84	scoped_allocator \
85	set \
86	shared_mutex \
87	sstream \
88	stack \
89	stdexcept \
90	streambuf \
91	string \
92	strstream \
93	system_error \
94	tgmath.h \
95	thread \
96	tuple \
97	typeindex \
98	typeinfo \
99	type_traits \
100	unordered_map \
101	unordered_set \
102	utility \
103	valarray \
104	vector
105
106INCS+=		cxxabi.h
107
108INCS+=	ext/__hash \
109	ext/hash_map \
110	ext/hash_set
111INCS+=	experimental/__config \
112	experimental/algorithm \
113	experimental/chrono \
114	experimental/dynarray \
115	experimental/optional \
116	experimental/ratio \
117	experimental/string_view \
118	experimental/system_error \
119	experimental/tuple \
120	experimental/type_traits \
121	experimental/utility
122
123cxxabi.h: ${LIBCXXRT_SRCDIR}/src/cxxabi.h
124	cp ${LIBCXXRT_SRCDIR}/src/cxxabi.h .
125
126DPSRCS+=	cxxabi.h
127CLEANFILES+=	cxxabi.h
128
129.include <bsd.inc.mk>
130.include <bsd.clean.mk>
131.include <bsd.obj.mk>
132