1# $NetBSD: Makefile,v 1.6 2014/08/09 19:06:49 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 __tuple_03 \ 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/dynarray \ 113 experimental/optional \ 114 experimental/string_view \ 115 experimental/utility 116 117cxxabi.h: ${LIBCXXRT_SRCDIR}/src/cxxabi.h 118 cp ${LIBCXXRT_SRCDIR}/src/cxxabi.h . 119 120DPSRCS+= cxxabi.h 121CLEANFILES+= cxxabi.h 122 123.include <bsd.inc.mk> 124.include <bsd.clean.mk> 125.include <bsd.obj.mk> 126