1## Makefile for the include subdirectory of the GNU C++ Standard library. 2## 3## Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007 4## Free Software Foundation, Inc. 5## 6## This file is part of the libstdc++ version 3 distribution. 7## Process this file with automake to produce Makefile.in. 8 9## This file is part of the GNU ISO C++ Library. This library is free 10## software; you can redistribute it and/or modify it under the 11## terms of the GNU General Public License as published by the 12## Free Software Foundation; either version 2, or (at your option) 13## any later version. 14 15## This library is distributed in the hope that it will be useful, 16## but WITHOUT ANY WARRANTY; without even the implied warranty of 17## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18## GNU General Public License for more details. 19 20## You should have received a copy of the GNU General Public License along 21## with this library; see the file COPYING. If not, write to the Free 22## Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 23## USA. 24 25include $(top_srcdir)/fragment.am 26 27# Standard C++ includes. 28std_srcdir = ${glibcxx_srcdir}/include/std 29std_builddir = . 30std_headers = \ 31 ${std_srcdir}/std_algorithm.h \ 32 ${std_srcdir}/std_bitset.h \ 33 ${std_srcdir}/std_complex.h \ 34 ${std_srcdir}/std_deque.h \ 35 ${std_srcdir}/std_fstream.h \ 36 ${std_srcdir}/std_functional.h \ 37 ${std_srcdir}/std_iomanip.h \ 38 ${std_srcdir}/std_ios.h \ 39 ${std_srcdir}/std_iosfwd.h \ 40 ${std_srcdir}/std_iostream.h \ 41 ${std_srcdir}/std_istream.h \ 42 ${std_srcdir}/std_iterator.h \ 43 ${std_srcdir}/std_limits.h \ 44 ${std_srcdir}/std_list.h \ 45 ${std_srcdir}/std_locale.h \ 46 ${std_srcdir}/std_map.h \ 47 ${std_srcdir}/std_memory.h \ 48 ${std_srcdir}/std_numeric.h \ 49 ${std_srcdir}/std_ostream.h \ 50 ${std_srcdir}/std_queue.h \ 51 ${std_srcdir}/std_set.h \ 52 ${std_srcdir}/std_sstream.h \ 53 ${std_srcdir}/std_stack.h \ 54 ${std_srcdir}/std_stdexcept.h \ 55 ${std_srcdir}/std_streambuf.h \ 56 ${std_srcdir}/std_string.h \ 57 ${std_srcdir}/std_utility.h \ 58 ${std_srcdir}/std_valarray.h \ 59 ${std_srcdir}/std_vector.h 60# Renamed at build time. 61std_headers_rename = \ 62 algorithm \ 63 bitset \ 64 complex \ 65 deque \ 66 fstream \ 67 functional \ 68 iomanip \ 69 ios \ 70 iosfwd \ 71 iostream \ 72 istream \ 73 iterator \ 74 limits \ 75 list \ 76 locale \ 77 map \ 78 memory \ 79 numeric \ 80 ostream \ 81 queue \ 82 set \ 83 sstream \ 84 stack \ 85 stdexcept \ 86 streambuf \ 87 string \ 88 utility \ 89 valarray \ 90 vector 91 92bits_srcdir = ${glibcxx_srcdir}/include/bits 93bits_builddir = ./bits 94bits_headers = \ 95 ${bits_srcdir}/allocator.h \ 96 ${bits_srcdir}/basic_ios.h \ 97 ${bits_srcdir}/basic_ios.tcc \ 98 ${bits_srcdir}/basic_string.h \ 99 ${bits_srcdir}/basic_string.tcc \ 100 ${bits_srcdir}/boost_concept_check.h \ 101 ${bits_srcdir}/char_traits.h \ 102 ${bits_srcdir}/codecvt.h \ 103 ${bits_srcdir}/concept_check.h \ 104 ${bits_srcdir}/cpp_type_traits.h \ 105 ${bits_srcdir}/deque.tcc \ 106 ${bits_srcdir}/fstream.tcc \ 107 ${bits_srcdir}/functexcept.h \ 108 ${bits_srcdir}/gslice.h \ 109 ${bits_srcdir}/gslice_array.h \ 110 ${bits_srcdir}/indirect_array.h \ 111 ${bits_srcdir}/ios_base.h \ 112 ${bits_srcdir}/istream.tcc \ 113 ${bits_srcdir}/list.tcc \ 114 ${bits_srcdir}/locale_classes.h \ 115 ${bits_srcdir}/locale_facets.h \ 116 ${bits_srcdir}/locale_facets.tcc \ 117 ${bits_srcdir}/localefwd.h \ 118 ${bits_srcdir}/mask_array.h \ 119 ${bits_srcdir}/ostream.tcc \ 120 ${bits_srcdir}/ostream_insert.h \ 121 ${bits_srcdir}/postypes.h \ 122 ${bits_srcdir}/stream_iterator.h \ 123 ${bits_srcdir}/streambuf_iterator.h \ 124 ${bits_srcdir}/slice_array.h \ 125 ${bits_srcdir}/sstream.tcc \ 126 ${bits_srcdir}/stl_algo.h \ 127 ${bits_srcdir}/stl_algobase.h \ 128 ${bits_srcdir}/stl_bvector.h \ 129 ${bits_srcdir}/stl_construct.h \ 130 ${bits_srcdir}/stl_deque.h \ 131 ${bits_srcdir}/stl_function.h \ 132 ${bits_srcdir}/stl_heap.h \ 133 ${bits_srcdir}/stl_iterator.h \ 134 ${bits_srcdir}/stl_iterator_base_funcs.h \ 135 ${bits_srcdir}/stl_iterator_base_types.h \ 136 ${bits_srcdir}/stl_list.h \ 137 ${bits_srcdir}/stl_map.h \ 138 ${bits_srcdir}/stl_multimap.h \ 139 ${bits_srcdir}/stl_multiset.h \ 140 ${bits_srcdir}/stl_numeric.h \ 141 ${bits_srcdir}/stl_pair.h \ 142 ${bits_srcdir}/stl_queue.h \ 143 ${bits_srcdir}/stl_raw_storage_iter.h \ 144 ${bits_srcdir}/stl_relops.h \ 145 ${bits_srcdir}/stl_set.h \ 146 ${bits_srcdir}/stl_stack.h \ 147 ${bits_srcdir}/stl_tempbuf.h \ 148 ${bits_srcdir}/stl_tree.h \ 149 ${bits_srcdir}/stl_uninitialized.h \ 150 ${bits_srcdir}/stl_vector.h \ 151 ${bits_srcdir}/streambuf.tcc \ 152 ${bits_srcdir}/stringfwd.h \ 153 ${bits_srcdir}/valarray_array.h \ 154 ${bits_srcdir}/valarray_array.tcc \ 155 ${bits_srcdir}/valarray_before.h \ 156 ${bits_srcdir}/valarray_after.h \ 157 ${bits_srcdir}/vector.tcc 158 159backward_srcdir = ${glibcxx_srcdir}/include/backward 160backward_builddir = ./backward 161backward_headers = \ 162 ${backward_srcdir}/complex.h \ 163 ${backward_srcdir}/iomanip.h \ 164 ${backward_srcdir}/istream.h \ 165 ${backward_srcdir}/ostream.h \ 166 ${backward_srcdir}/stream.h \ 167 ${backward_srcdir}/streambuf.h \ 168 ${backward_srcdir}/algo.h \ 169 ${backward_srcdir}/algobase.h \ 170 ${backward_srcdir}/alloc.h \ 171 ${backward_srcdir}/bvector.h \ 172 ${backward_srcdir}/defalloc.h \ 173 ${backward_srcdir}/deque.h \ 174 ${backward_srcdir}/function.h \ 175 ${backward_srcdir}/hash_map.h \ 176 ${backward_srcdir}/hash_set.h \ 177 ${backward_srcdir}/hashtable.h \ 178 ${backward_srcdir}/heap.h \ 179 ${backward_srcdir}/iostream.h \ 180 ${backward_srcdir}/iterator.h \ 181 ${backward_srcdir}/list.h \ 182 ${backward_srcdir}/map.h \ 183 ${backward_srcdir}/multimap.h \ 184 ${backward_srcdir}/new.h \ 185 ${backward_srcdir}/multiset.h \ 186 ${backward_srcdir}/pair.h \ 187 ${backward_srcdir}/queue.h \ 188 ${backward_srcdir}/rope.h \ 189 ${backward_srcdir}/set.h \ 190 ${backward_srcdir}/slist.h \ 191 ${backward_srcdir}/stack.h \ 192 ${backward_srcdir}/tempbuf.h \ 193 ${backward_srcdir}/tree.h \ 194 ${backward_srcdir}/vector.h \ 195 ${backward_srcdir}/fstream.h \ 196 ${backward_srcdir}/strstream \ 197 ${backward_srcdir}/backward_warning.h 198 199 200pb_srcdir = ${glibcxx_srcdir}/include/ext/pb_ds 201pb_builddir = ./ext/pb_ds 202 203pb_subdirs = \ 204 ${pb_builddir}/detail \ 205 ${pb_builddir}/detail/pairing_heap_ \ 206 ${pb_builddir}/detail/splay_tree_ \ 207 ${pb_builddir}/detail/list_update_map_ \ 208 ${pb_builddir}/detail/basic_tree_policy \ 209 ${pb_builddir}/detail/trie_policy \ 210 ${pb_builddir}/detail/gp_hash_table_map_ \ 211 ${pb_builddir}/detail/tree_policy \ 212 ${pb_builddir}/detail/binomial_heap_base_ \ 213 ${pb_builddir}/detail/resize_policy \ 214 ${pb_builddir}/detail/bin_search_tree_ \ 215 ${pb_builddir}/detail/binomial_heap_ \ 216 ${pb_builddir}/detail/thin_heap_ \ 217 ${pb_builddir}/detail/pat_trie_ \ 218 ${pb_builddir}/detail/cc_hash_table_map_ \ 219 ${pb_builddir}/detail/rc_binomial_heap_ \ 220 ${pb_builddir}/detail/left_child_next_sibling_heap_ \ 221 ${pb_builddir}/detail/unordered_iterator \ 222 ${pb_builddir}/detail/binary_heap_ \ 223 ${pb_builddir}/detail/ov_tree_map_ \ 224 ${pb_builddir}/detail/hash_fn \ 225 ${pb_builddir}/detail/eq_fn \ 226 ${pb_builddir}/detail/rb_tree_map_ \ 227 ${pb_builddir}/detail/list_update_policy 228 229# The ability for make and the underlying host to deal with this 230# unweildy list as one entire entity is not a sure thing, and may 231# cause build errors. Thus, split one list into many smaller 232# mini-lists, with the maximum size per mini-list of no more than 42. 233 234pb_headers1 = \ 235 ${pb_srcdir}/assoc_container.hpp \ 236 ${pb_srcdir}/exception.hpp \ 237 ${pb_srcdir}/hash_policy.hpp \ 238 ${pb_srcdir}/list_update_policy.hpp \ 239 ${pb_srcdir}/priority_queue.hpp \ 240 ${pb_srcdir}/tag_and_trait.hpp \ 241 ${pb_srcdir}/tree_policy.hpp \ 242 ${pb_srcdir}/trie_policy.hpp \ 243 ${pb_srcdir}/detail/basic_tree_policy/basic_tree_policy_base.hpp \ 244 ${pb_srcdir}/detail/basic_tree_policy/null_node_metadata.hpp \ 245 ${pb_srcdir}/detail/basic_tree_policy/traits.hpp \ 246 ${pb_srcdir}/detail/basic_types.hpp \ 247 ${pb_srcdir}/detail/binary_heap_/binary_heap_.hpp \ 248 ${pb_srcdir}/detail/binary_heap_/const_iterator.hpp \ 249 ${pb_srcdir}/detail/binary_heap_/const_point_iterator.hpp \ 250 ${pb_srcdir}/detail/binary_heap_/constructors_destructor_fn_imps.hpp \ 251 ${pb_srcdir}/detail/binary_heap_/debug_fn_imps.hpp \ 252 ${pb_srcdir}/detail/binary_heap_/entry_cmp.hpp \ 253 ${pb_srcdir}/detail/binary_heap_/entry_pred.hpp \ 254 ${pb_srcdir}/detail/binary_heap_/erase_fn_imps.hpp \ 255 ${pb_srcdir}/detail/binary_heap_/find_fn_imps.hpp \ 256 ${pb_srcdir}/detail/binary_heap_/info_fn_imps.hpp \ 257 ${pb_srcdir}/detail/binary_heap_/insert_fn_imps.hpp \ 258 ${pb_srcdir}/detail/binary_heap_/iterators_fn_imps.hpp \ 259 ${pb_srcdir}/detail/binary_heap_/policy_access_fn_imps.hpp \ 260 ${pb_srcdir}/detail/binary_heap_/resize_policy.hpp \ 261 ${pb_srcdir}/detail/binary_heap_/split_join_fn_imps.hpp \ 262 ${pb_srcdir}/detail/binary_heap_/trace_fn_imps.hpp \ 263 ${pb_srcdir}/detail/binomial_heap_base_/binomial_heap_base_.hpp \ 264 ${pb_srcdir}/detail/binomial_heap_base_/constructors_destructor_fn_imps.hpp \ 265 ${pb_srcdir}/detail/binomial_heap_base_/debug_fn_imps.hpp \ 266 ${pb_srcdir}/detail/binomial_heap_base_/erase_fn_imps.hpp \ 267 ${pb_srcdir}/detail/binomial_heap_base_/find_fn_imps.hpp \ 268 ${pb_srcdir}/detail/binomial_heap_base_/insert_fn_imps.hpp \ 269 ${pb_srcdir}/detail/binomial_heap_base_/split_join_fn_imps.hpp \ 270 ${pb_srcdir}/detail/binomial_heap_/binomial_heap_.hpp \ 271 ${pb_srcdir}/detail/binomial_heap_/constructors_destructor_fn_imps.hpp \ 272 ${pb_srcdir}/detail/binomial_heap_/debug_fn_imps.hpp \ 273 ${pb_srcdir}/detail/bin_search_tree_/bin_search_tree_.hpp \ 274 ${pb_srcdir}/detail/bin_search_tree_/cond_dtor_entry_dealtor.hpp \ 275 ${pb_srcdir}/detail/bin_search_tree_/cond_key_dtor_entry_dealtor.hpp 276 277pb_headers2 = \ 278 ${pb_srcdir}/detail/bin_search_tree_/constructors_destructor_fn_imps.hpp \ 279 ${pb_srcdir}/detail/bin_search_tree_/debug_fn_imps.hpp \ 280 ${pb_srcdir}/detail/bin_search_tree_/erase_fn_imps.hpp \ 281 ${pb_srcdir}/detail/bin_search_tree_/find_fn_imps.hpp \ 282 ${pb_srcdir}/detail/bin_search_tree_/info_fn_imps.hpp \ 283 ${pb_srcdir}/detail/bin_search_tree_/insert_fn_imps.hpp \ 284 ${pb_srcdir}/detail/bin_search_tree_/iterators_fn_imps.hpp \ 285 ${pb_srcdir}/detail/bin_search_tree_/node_iterators.hpp \ 286 ${pb_srcdir}/detail/bin_search_tree_/point_iterators.hpp \ 287 ${pb_srcdir}/detail/bin_search_tree_/policy_access_fn_imps.hpp \ 288 ${pb_srcdir}/detail/bin_search_tree_/r_erase_fn_imps.hpp \ 289 ${pb_srcdir}/detail/bin_search_tree_/rotate_fn_imps.hpp \ 290 ${pb_srcdir}/detail/bin_search_tree_/split_join_fn_imps.hpp \ 291 ${pb_srcdir}/detail/bin_search_tree_/traits.hpp \ 292 ${pb_srcdir}/detail/cc_hash_table_map_/cc_ht_map_.hpp \ 293 ${pb_srcdir}/detail/cc_hash_table_map_/cmp_fn_imps.hpp \ 294 ${pb_srcdir}/detail/cc_hash_table_map_/cond_key_dtor_entry_dealtor.hpp \ 295 ${pb_srcdir}/detail/cc_hash_table_map_/constructor_destructor_fn_imps.hpp \ 296 ${pb_srcdir}/detail/cc_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp \ 297 ${pb_srcdir}/detail/cc_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp \ 298 ${pb_srcdir}/detail/cc_hash_table_map_/debug_fn_imps.hpp \ 299 ${pb_srcdir}/detail/cc_hash_table_map_/debug_no_store_hash_fn_imps.hpp \ 300 ${pb_srcdir}/detail/cc_hash_table_map_/debug_store_hash_fn_imps.hpp \ 301 ${pb_srcdir}/detail/cc_hash_table_map_/entry_list_fn_imps.hpp \ 302 ${pb_srcdir}/detail/cc_hash_table_map_/erase_fn_imps.hpp \ 303 ${pb_srcdir}/detail/cc_hash_table_map_/erase_no_store_hash_fn_imps.hpp \ 304 ${pb_srcdir}/detail/cc_hash_table_map_/erase_store_hash_fn_imps.hpp \ 305 ${pb_srcdir}/detail/cc_hash_table_map_/find_fn_imps.hpp \ 306 ${pb_srcdir}/detail/cc_hash_table_map_/find_store_hash_fn_imps.hpp \ 307 ${pb_srcdir}/detail/cc_hash_table_map_/info_fn_imps.hpp \ 308 ${pb_srcdir}/detail/cc_hash_table_map_/insert_fn_imps.hpp \ 309 ${pb_srcdir}/detail/cc_hash_table_map_/insert_no_store_hash_fn_imps.hpp \ 310 ${pb_srcdir}/detail/cc_hash_table_map_/insert_store_hash_fn_imps.hpp \ 311 ${pb_srcdir}/detail/cc_hash_table_map_/iterators_fn_imps.hpp \ 312 ${pb_srcdir}/detail/cc_hash_table_map_/policy_access_fn_imps.hpp \ 313 ${pb_srcdir}/detail/cc_hash_table_map_/resize_fn_imps.hpp \ 314 ${pb_srcdir}/detail/cc_hash_table_map_/resize_no_store_hash_fn_imps.hpp \ 315 ${pb_srcdir}/detail/cc_hash_table_map_/resize_store_hash_fn_imps.hpp \ 316 ${pb_srcdir}/detail/cc_hash_table_map_/size_fn_imps.hpp \ 317 ${pb_srcdir}/detail/cc_hash_table_map_/standard_policies.hpp 318 319pb_headers3 = \ 320 ${pb_srcdir}/detail/cc_hash_table_map_/trace_fn_imps.hpp \ 321 ${pb_srcdir}/detail/cond_dealtor.hpp \ 322 ${pb_srcdir}/detail/constructors_destructor_fn_imps.hpp \ 323 ${pb_srcdir}/detail/container_base_dispatch.hpp \ 324 ${pb_srcdir}/detail/eq_fn/eq_by_less.hpp \ 325 ${pb_srcdir}/detail/eq_fn/hash_eq_fn.hpp \ 326 ${pb_srcdir}/detail/gp_hash_table_map_/constructor_destructor_fn_imps.hpp \ 327 ${pb_srcdir}/detail/gp_hash_table_map_/constructor_destructor_no_store_hash_fn_imps.hpp \ 328 ${pb_srcdir}/detail/gp_hash_table_map_/constructor_destructor_store_hash_fn_imps.hpp \ 329 ${pb_srcdir}/detail/gp_hash_table_map_/debug_fn_imps.hpp \ 330 ${pb_srcdir}/detail/gp_hash_table_map_/debug_no_store_hash_fn_imps.hpp \ 331 ${pb_srcdir}/detail/gp_hash_table_map_/debug_store_hash_fn_imps.hpp \ 332 ${pb_srcdir}/detail/gp_hash_table_map_/erase_fn_imps.hpp \ 333 ${pb_srcdir}/detail/gp_hash_table_map_/erase_no_store_hash_fn_imps.hpp \ 334 ${pb_srcdir}/detail/gp_hash_table_map_/erase_store_hash_fn_imps.hpp \ 335 ${pb_srcdir}/detail/gp_hash_table_map_/find_fn_imps.hpp \ 336 ${pb_srcdir}/detail/gp_hash_table_map_/find_no_store_hash_fn_imps.hpp \ 337 ${pb_srcdir}/detail/gp_hash_table_map_/find_store_hash_fn_imps.hpp \ 338 ${pb_srcdir}/detail/gp_hash_table_map_/gp_ht_map_.hpp \ 339 ${pb_srcdir}/detail/gp_hash_table_map_/info_fn_imps.hpp \ 340 ${pb_srcdir}/detail/gp_hash_table_map_/insert_fn_imps.hpp \ 341 ${pb_srcdir}/detail/gp_hash_table_map_/insert_no_store_hash_fn_imps.hpp \ 342 ${pb_srcdir}/detail/gp_hash_table_map_/insert_store_hash_fn_imps.hpp \ 343 ${pb_srcdir}/detail/gp_hash_table_map_/iterator_fn_imps.hpp \ 344 ${pb_srcdir}/detail/gp_hash_table_map_/policy_access_fn_imps.hpp \ 345 ${pb_srcdir}/detail/gp_hash_table_map_/resize_fn_imps.hpp \ 346 ${pb_srcdir}/detail/gp_hash_table_map_/resize_no_store_hash_fn_imps.hpp \ 347 ${pb_srcdir}/detail/gp_hash_table_map_/resize_store_hash_fn_imps.hpp \ 348 ${pb_srcdir}/detail/gp_hash_table_map_/standard_policies.hpp \ 349 ${pb_srcdir}/detail/gp_hash_table_map_/trace_fn_imps.hpp \ 350 ${pb_srcdir}/detail/hash_fn/direct_mask_range_hashing_imp.hpp \ 351 ${pb_srcdir}/detail/hash_fn/direct_mod_range_hashing_imp.hpp \ 352 ${pb_srcdir}/detail/hash_fn/linear_probe_fn_imp.hpp \ 353 ${pb_srcdir}/detail/hash_fn/mask_based_range_hashing.hpp \ 354 ${pb_srcdir}/detail/hash_fn/mod_based_range_hashing.hpp \ 355 ${pb_srcdir}/detail/hash_fn/probe_fn_base.hpp \ 356 ${pb_srcdir}/detail/hash_fn/quadratic_probe_fn_imp.hpp \ 357 ${pb_srcdir}/detail/hash_fn/ranged_hash_fn.hpp \ 358 ${pb_srcdir}/detail/hash_fn/ranged_probe_fn.hpp 359 360pb_headers4 = \ 361 ${pb_srcdir}/detail/hash_fn/sample_probe_fn.hpp \ 362 ${pb_srcdir}/detail/hash_fn/sample_ranged_hash_fn.hpp \ 363 ${pb_srcdir}/detail/hash_fn/sample_ranged_probe_fn.hpp \ 364 ${pb_srcdir}/detail/hash_fn/sample_range_hashing.hpp \ 365 ${pb_srcdir}/detail/left_child_next_sibling_heap_/const_iterator.hpp \ 366 ${pb_srcdir}/detail/left_child_next_sibling_heap_/const_point_iterator.hpp \ 367 ${pb_srcdir}/detail/left_child_next_sibling_heap_/constructors_destructor_fn_imps.hpp \ 368 ${pb_srcdir}/detail/left_child_next_sibling_heap_/debug_fn_imps.hpp \ 369 ${pb_srcdir}/detail/left_child_next_sibling_heap_/erase_fn_imps.hpp \ 370 ${pb_srcdir}/detail/left_child_next_sibling_heap_/info_fn_imps.hpp \ 371 ${pb_srcdir}/detail/left_child_next_sibling_heap_/insert_fn_imps.hpp \ 372 ${pb_srcdir}/detail/left_child_next_sibling_heap_/iterators_fn_imps.hpp \ 373 ${pb_srcdir}/detail/left_child_next_sibling_heap_/left_child_next_sibling_heap_.hpp \ 374 ${pb_srcdir}/detail/left_child_next_sibling_heap_/node.hpp \ 375 ${pb_srcdir}/detail/left_child_next_sibling_heap_/null_metadata.hpp \ 376 ${pb_srcdir}/detail/left_child_next_sibling_heap_/policy_access_fn_imps.hpp \ 377 ${pb_srcdir}/detail/left_child_next_sibling_heap_/trace_fn_imps.hpp \ 378 ${pb_srcdir}/detail/list_update_map_/constructor_destructor_fn_imps.hpp \ 379 ${pb_srcdir}/detail/list_update_map_/debug_fn_imps.hpp \ 380 ${pb_srcdir}/detail/list_update_map_/entry_metadata_base.hpp \ 381 ${pb_srcdir}/detail/list_update_map_/erase_fn_imps.hpp \ 382 ${pb_srcdir}/detail/list_update_map_/find_fn_imps.hpp \ 383 ${pb_srcdir}/detail/list_update_map_/info_fn_imps.hpp \ 384 ${pb_srcdir}/detail/list_update_map_/insert_fn_imps.hpp \ 385 ${pb_srcdir}/detail/list_update_map_/iterators_fn_imps.hpp \ 386 ${pb_srcdir}/detail/list_update_map_/lu_map_.hpp \ 387 ${pb_srcdir}/detail/list_update_map_/trace_fn_imps.hpp \ 388 ${pb_srcdir}/detail/list_update_policy/counter_lu_metadata.hpp \ 389 ${pb_srcdir}/detail/list_update_policy/counter_lu_policy_imp.hpp \ 390 ${pb_srcdir}/detail/list_update_policy/mtf_lu_policy_imp.hpp \ 391 ${pb_srcdir}/detail/list_update_policy/sample_update_policy.hpp \ 392 ${pb_srcdir}/detail/map_debug_base.hpp \ 393 ${pb_srcdir}/detail/ov_tree_map_/cond_dtor.hpp \ 394 ${pb_srcdir}/detail/ov_tree_map_/constructors_destructor_fn_imps.hpp \ 395 ${pb_srcdir}/detail/ov_tree_map_/debug_fn_imps.hpp \ 396 ${pb_srcdir}/detail/ov_tree_map_/erase_fn_imps.hpp \ 397 ${pb_srcdir}/detail/ov_tree_map_/info_fn_imps.hpp \ 398 ${pb_srcdir}/detail/ov_tree_map_/insert_fn_imps.hpp \ 399 ${pb_srcdir}/detail/ov_tree_map_/iterators_fn_imps.hpp \ 400 ${pb_srcdir}/detail/ov_tree_map_/node_iterators.hpp \ 401 ${pb_srcdir}/detail/ov_tree_map_/ov_tree_map_.hpp 402 403pb_headers5 = \ 404 ${pb_srcdir}/detail/ov_tree_map_/policy_access_fn_imps.hpp \ 405 ${pb_srcdir}/detail/ov_tree_map_/split_join_fn_imps.hpp \ 406 ${pb_srcdir}/detail/ov_tree_map_/traits.hpp \ 407 ${pb_srcdir}/detail/pairing_heap_/constructors_destructor_fn_imps.hpp \ 408 ${pb_srcdir}/detail/pairing_heap_/debug_fn_imps.hpp \ 409 ${pb_srcdir}/detail/pairing_heap_/erase_fn_imps.hpp \ 410 ${pb_srcdir}/detail/pairing_heap_/find_fn_imps.hpp \ 411 ${pb_srcdir}/detail/pairing_heap_/insert_fn_imps.hpp \ 412 ${pb_srcdir}/detail/pairing_heap_/pairing_heap_.hpp \ 413 ${pb_srcdir}/detail/pairing_heap_/split_join_fn_imps.hpp \ 414 ${pb_srcdir}/detail/pat_trie_/child_iterator.hpp \ 415 ${pb_srcdir}/detail/pat_trie_/cond_dtor_entry_dealtor.hpp \ 416 ${pb_srcdir}/detail/pat_trie_/const_child_iterator.hpp \ 417 ${pb_srcdir}/detail/pat_trie_/constructors_destructor_fn_imps.hpp \ 418 ${pb_srcdir}/detail/pat_trie_/debug_fn_imps.hpp \ 419 ${pb_srcdir}/detail/pat_trie_/erase_fn_imps.hpp \ 420 ${pb_srcdir}/detail/pat_trie_/find_fn_imps.hpp \ 421 ${pb_srcdir}/detail/pat_trie_/head.hpp \ 422 ${pb_srcdir}/detail/pat_trie_/info_fn_imps.hpp \ 423 ${pb_srcdir}/detail/pat_trie_/insert_join_fn_imps.hpp \ 424 ${pb_srcdir}/detail/pat_trie_/internal_node.hpp \ 425 ${pb_srcdir}/detail/pat_trie_/iterators_fn_imps.hpp \ 426 ${pb_srcdir}/detail/pat_trie_/leaf.hpp \ 427 ${pb_srcdir}/detail/pat_trie_/node_base.hpp \ 428 ${pb_srcdir}/detail/pat_trie_/node_iterators.hpp \ 429 ${pb_srcdir}/detail/pat_trie_/node_metadata_base.hpp \ 430 ${pb_srcdir}/detail/pat_trie_/pat_trie_.hpp \ 431 ${pb_srcdir}/detail/pat_trie_/point_iterators.hpp \ 432 ${pb_srcdir}/detail/pat_trie_/policy_access_fn_imps.hpp \ 433 ${pb_srcdir}/detail/pat_trie_/r_erase_fn_imps.hpp \ 434 ${pb_srcdir}/detail/pat_trie_/rotate_fn_imps.hpp \ 435 ${pb_srcdir}/detail/pat_trie_/split_fn_imps.hpp \ 436 ${pb_srcdir}/detail/pat_trie_/split_join_branch_bag.hpp \ 437 ${pb_srcdir}/detail/pat_trie_/synth_e_access_traits.hpp \ 438 ${pb_srcdir}/detail/pat_trie_/trace_fn_imps.hpp \ 439 ${pb_srcdir}/detail/pat_trie_/traits.hpp \ 440 ${pb_srcdir}/detail/pat_trie_/update_fn_imps.hpp \ 441 ${pb_srcdir}/detail/priority_queue_base_dispatch.hpp \ 442 ${pb_srcdir}/detail/rb_tree_map_/constructors_destructor_fn_imps.hpp \ 443 ${pb_srcdir}/detail/rb_tree_map_/debug_fn_imps.hpp 444 445pb_headers6 = \ 446 ${pb_srcdir}/detail/rb_tree_map_/erase_fn_imps.hpp \ 447 ${pb_srcdir}/detail/rb_tree_map_/find_fn_imps.hpp \ 448 ${pb_srcdir}/detail/rb_tree_map_/info_fn_imps.hpp \ 449 ${pb_srcdir}/detail/rb_tree_map_/insert_fn_imps.hpp \ 450 ${pb_srcdir}/detail/rb_tree_map_/node.hpp \ 451 ${pb_srcdir}/detail/rb_tree_map_/rb_tree_.hpp \ 452 ${pb_srcdir}/detail/rb_tree_map_/split_join_fn_imps.hpp \ 453 ${pb_srcdir}/detail/rb_tree_map_/traits.hpp \ 454 ${pb_srcdir}/detail/rc_binomial_heap_/constructors_destructor_fn_imps.hpp \ 455 ${pb_srcdir}/detail/rc_binomial_heap_/debug_fn_imps.hpp \ 456 ${pb_srcdir}/detail/rc_binomial_heap_/erase_fn_imps.hpp \ 457 ${pb_srcdir}/detail/rc_binomial_heap_/insert_fn_imps.hpp \ 458 ${pb_srcdir}/detail/rc_binomial_heap_/rc_binomial_heap_.hpp \ 459 ${pb_srcdir}/detail/rc_binomial_heap_/rc.hpp \ 460 ${pb_srcdir}/detail/rc_binomial_heap_/split_join_fn_imps.hpp \ 461 ${pb_srcdir}/detail/rc_binomial_heap_/trace_fn_imps.hpp \ 462 ${pb_srcdir}/detail/resize_policy/cc_hash_max_collision_check_resize_trigger_imp.hpp \ 463 ${pb_srcdir}/detail/resize_policy/hash_exponential_size_policy_imp.hpp \ 464 ${pb_srcdir}/detail/resize_policy/hash_load_check_resize_trigger_imp.hpp \ 465 ${pb_srcdir}/detail/resize_policy/hash_load_check_resize_trigger_size_base.hpp \ 466 ${pb_srcdir}/detail/resize_policy/hash_prime_size_policy_imp.hpp \ 467 ${pb_srcdir}/detail/resize_policy/hash_standard_resize_policy_imp.hpp \ 468 ${pb_srcdir}/detail/resize_policy/sample_resize_policy.hpp \ 469 ${pb_srcdir}/detail/resize_policy/sample_resize_trigger.hpp \ 470 ${pb_srcdir}/detail/resize_policy/sample_size_policy.hpp \ 471 ${pb_srcdir}/detail/splay_tree_/constructors_destructor_fn_imps.hpp \ 472 ${pb_srcdir}/detail/splay_tree_/debug_fn_imps.hpp \ 473 ${pb_srcdir}/detail/splay_tree_/erase_fn_imps.hpp \ 474 ${pb_srcdir}/detail/splay_tree_/find_fn_imps.hpp \ 475 ${pb_srcdir}/detail/splay_tree_/info_fn_imps.hpp \ 476 ${pb_srcdir}/detail/splay_tree_/insert_fn_imps.hpp \ 477 ${pb_srcdir}/detail/splay_tree_/node.hpp \ 478 ${pb_srcdir}/detail/splay_tree_/splay_fn_imps.hpp \ 479 ${pb_srcdir}/detail/splay_tree_/splay_tree_.hpp \ 480 ${pb_srcdir}/detail/splay_tree_/split_join_fn_imps.hpp \ 481 ${pb_srcdir}/detail/splay_tree_/traits.hpp \ 482 ${pb_srcdir}/detail/standard_policies.hpp \ 483 ${pb_srcdir}/detail/thin_heap_/constructors_destructor_fn_imps.hpp \ 484 ${pb_srcdir}/detail/thin_heap_/debug_fn_imps.hpp \ 485 ${pb_srcdir}/detail/thin_heap_/erase_fn_imps.hpp 486 487pb_headers7 = \ 488 ${pb_srcdir}/detail/thin_heap_/find_fn_imps.hpp \ 489 ${pb_srcdir}/detail/thin_heap_/insert_fn_imps.hpp \ 490 ${pb_srcdir}/detail/thin_heap_/split_join_fn_imps.hpp \ 491 ${pb_srcdir}/detail/thin_heap_/thin_heap_.hpp \ 492 ${pb_srcdir}/detail/thin_heap_/trace_fn_imps.hpp \ 493 ${pb_srcdir}/detail/tree_policy/node_metadata_selector.hpp \ 494 ${pb_srcdir}/detail/tree_policy/null_node_update_imp.hpp \ 495 ${pb_srcdir}/detail/tree_policy/order_statistics_imp.hpp \ 496 ${pb_srcdir}/detail/tree_policy/sample_tree_node_update.hpp \ 497 ${pb_srcdir}/detail/tree_trace_base.hpp \ 498 ${pb_srcdir}/detail/trie_policy/node_metadata_selector.hpp \ 499 ${pb_srcdir}/detail/trie_policy/null_node_update_imp.hpp \ 500 ${pb_srcdir}/detail/trie_policy/order_statistics_imp.hpp \ 501 ${pb_srcdir}/detail/trie_policy/prefix_search_node_update_imp.hpp \ 502 ${pb_srcdir}/detail/trie_policy/sample_trie_e_access_traits.hpp \ 503 ${pb_srcdir}/detail/trie_policy/sample_trie_node_update.hpp \ 504 ${pb_srcdir}/detail/trie_policy/string_trie_e_access_traits_imp.hpp \ 505 ${pb_srcdir}/detail/trie_policy/trie_policy_base.hpp \ 506 ${pb_srcdir}/detail/types_traits.hpp \ 507 ${pb_srcdir}/detail/type_utils.hpp \ 508 ${pb_srcdir}/detail/unordered_iterator/const_iterator.hpp \ 509 ${pb_srcdir}/detail/unordered_iterator/const_point_iterator.hpp \ 510 ${pb_srcdir}/detail/unordered_iterator/iterator.hpp \ 511 ${pb_srcdir}/detail/unordered_iterator/point_iterator.hpp 512 513 514 515ext_srcdir = ${glibcxx_srcdir}/include/ext 516ext_builddir = ./ext 517ext_headers = \ 518 ${ext_srcdir}/algorithm \ 519 ${ext_srcdir}/atomicity.h \ 520 ${ext_srcdir}/array_allocator.h \ 521 ${ext_srcdir}/bitmap_allocator.h \ 522 ${ext_srcdir}/codecvt_specializations.h \ 523 ${ext_srcdir}/concurrence.h \ 524 ${ext_srcdir}/debug_allocator.h \ 525 ${ext_srcdir}/stdio_filebuf.h \ 526 ${ext_srcdir}/stdio_sync_filebuf.h \ 527 ${ext_srcdir}/functional \ 528 ${ext_srcdir}/hash_map \ 529 ${ext_srcdir}/hash_set \ 530 ${ext_srcdir}/hash_fun.h \ 531 ${ext_srcdir}/hashtable.h \ 532 ${ext_srcdir}/iterator \ 533 ${ext_srcdir}/malloc_allocator.h \ 534 ${ext_srcdir}/memory \ 535 ${ext_srcdir}/mt_allocator.h \ 536 ${ext_srcdir}/new_allocator.h \ 537 ${ext_srcdir}/numeric \ 538 ${ext_srcdir}/numeric_traits.h \ 539 ${ext_srcdir}/pod_char_traits.h \ 540 ${ext_srcdir}/pool_allocator.h \ 541 ${ext_srcdir}/rb_tree \ 542 ${ext_srcdir}/rope \ 543 ${ext_srcdir}/ropeimpl.h \ 544 ${ext_srcdir}/slist \ 545 ${ext_srcdir}/throw_allocator.h \ 546 ${ext_srcdir}/typelist.h \ 547 ${ext_srcdir}/type_traits.h \ 548 ${ext_srcdir}/rc_string_base.h \ 549 ${ext_srcdir}/sso_string_base.h \ 550 ${ext_srcdir}/vstring.h \ 551 ${ext_srcdir}/vstring.tcc \ 552 ${ext_srcdir}/vstring_fwd.h \ 553 ${ext_srcdir}/vstring_util.h 554 555 556tr1_srcdir = ${glibcxx_srcdir}/include/tr1 557tr1_builddir = ./tr1 558tr1_headers = \ 559 ${tr1_srcdir}/array \ 560 ${tr1_srcdir}/bind_repeat.h \ 561 ${tr1_srcdir}/bind_iterate.h \ 562 ${tr1_srcdir}/boost_shared_ptr.h \ 563 ${tr1_srcdir}/cctype \ 564 ${tr1_srcdir}/cfenv \ 565 ${tr1_srcdir}/cfloat \ 566 ${tr1_srcdir}/cinttypes \ 567 ${tr1_srcdir}/climits \ 568 ${tr1_srcdir}/cmath \ 569 ${tr1_srcdir}/common.h \ 570 ${tr1_srcdir}/complex \ 571 ${tr1_srcdir}/cstdarg \ 572 ${tr1_srcdir}/cstdbool \ 573 ${tr1_srcdir}/cstdint \ 574 ${tr1_srcdir}/cstdio \ 575 ${tr1_srcdir}/cstdlib \ 576 ${tr1_srcdir}/ctgmath \ 577 ${tr1_srcdir}/ctime \ 578 ${tr1_srcdir}/ctype.h \ 579 ${tr1_srcdir}/cwchar \ 580 ${tr1_srcdir}/cwctype \ 581 ${tr1_srcdir}/fenv.h \ 582 ${tr1_srcdir}/float.h \ 583 ${tr1_srcdir}/functional \ 584 ${tr1_srcdir}/functional_hash.h \ 585 ${tr1_srcdir}/functional_iterate.h \ 586 ${tr1_srcdir}/hashtable \ 587 ${tr1_srcdir}/hashtable_policy.h \ 588 ${tr1_srcdir}/inttypes.h \ 589 ${tr1_srcdir}/limits.h \ 590 ${tr1_srcdir}/math.h \ 591 ${tr1_srcdir}/memory \ 592 ${tr1_srcdir}/mu_iterate.h \ 593 ${tr1_srcdir}/random \ 594 ${tr1_srcdir}/random.tcc \ 595 ${tr1_srcdir}/ref_fwd.h \ 596 ${tr1_srcdir}/ref_wrap_iterate.h \ 597 ${tr1_srcdir}/repeat.h \ 598 ${tr1_srcdir}/stdarg.h \ 599 ${tr1_srcdir}/stdbool.h \ 600 ${tr1_srcdir}/stdint.h \ 601 ${tr1_srcdir}/stdio.h \ 602 ${tr1_srcdir}/stdlib.h \ 603 ${tr1_srcdir}/tgmath.h \ 604 ${tr1_srcdir}/tuple \ 605 ${tr1_srcdir}/tuple_defs.h \ 606 ${tr1_srcdir}/tuple_iterate.h \ 607 ${tr1_srcdir}/type_traits \ 608 ${tr1_srcdir}/type_traits_fwd.h \ 609 ${tr1_srcdir}/unordered_set \ 610 ${tr1_srcdir}/unordered_map \ 611 ${tr1_srcdir}/utility \ 612 ${tr1_srcdir}/wchar.h \ 613 ${tr1_srcdir}/wctype.h 614 615 616# This is the common subset of files that all three "C" header models use. 617c_base_srcdir = $(C_INCLUDE_DIR) 618c_base_builddir = . 619c_base_headers = \ 620 ${c_base_srcdir}/std_cassert.h \ 621 ${c_base_srcdir}/std_cctype.h \ 622 ${c_base_srcdir}/std_cerrno.h \ 623 ${c_base_srcdir}/std_cfloat.h \ 624 ${c_base_srcdir}/std_ciso646.h \ 625 ${c_base_srcdir}/std_climits.h \ 626 ${c_base_srcdir}/std_clocale.h \ 627 ${c_base_srcdir}/std_cmath.h \ 628 ${c_base_srcdir}/std_csetjmp.h \ 629 ${c_base_srcdir}/std_csignal.h \ 630 ${c_base_srcdir}/std_cstdarg.h \ 631 ${c_base_srcdir}/std_cstddef.h \ 632 ${c_base_srcdir}/std_cstdio.h \ 633 ${c_base_srcdir}/std_cstdlib.h \ 634 ${c_base_srcdir}/std_cstring.h \ 635 ${c_base_srcdir}/std_ctime.h \ 636 ${c_base_srcdir}/std_cwchar.h \ 637 ${c_base_srcdir}/std_cwctype.h 638c_base_headers_rename = \ 639 cassert \ 640 cctype \ 641 cerrno \ 642 cfloat \ 643 ciso646 \ 644 climits \ 645 clocale \ 646 cmath \ 647 csetjmp \ 648 csignal \ 649 cstdarg \ 650 cstddef \ 651 cstdio \ 652 cstdlib \ 653 cstring \ 654 ctime \ 655 cwchar \ 656 cwctype 657 658# "C" compatibility headers. 659c_compatibility_srcdir = ${glibcxx_srcdir}/include/c_compatibility 660c_compatibility_builddir = . 661c_compatibility_headers = \ 662 ${c_compatibility_srcdir}/assert.h \ 663 ${c_compatibility_srcdir}/ctype.h \ 664 ${c_compatibility_srcdir}/errno.h \ 665 ${c_compatibility_srcdir}/float.h \ 666 ${c_compatibility_srcdir}/iso646.h \ 667 ${c_compatibility_srcdir}/limits.h \ 668 ${c_compatibility_srcdir}/locale.h \ 669 ${c_compatibility_srcdir}/math.h \ 670 ${c_compatibility_srcdir}/setjmp.h \ 671 ${c_compatibility_srcdir}/signal.h \ 672 ${c_compatibility_srcdir}/stdarg.h \ 673 ${c_compatibility_srcdir}/stddef.h \ 674 ${c_compatibility_srcdir}/stdio.h \ 675 ${c_compatibility_srcdir}/stdlib.h \ 676 ${c_compatibility_srcdir}/string.h \ 677 ${c_compatibility_srcdir}/time.h \ 678 ${c_compatibility_srcdir}/wchar.h \ 679 ${c_compatibility_srcdir}/wctype.h 680 681# Debug mode headers 682debug_srcdir = ${glibcxx_srcdir}/include/debug 683debug_builddir = ./debug 684debug_headers = \ 685 ${debug_srcdir}/bitset \ 686 ${debug_srcdir}/debug.h \ 687 ${debug_srcdir}/deque \ 688 ${debug_srcdir}/formatter.h \ 689 ${debug_srcdir}/functions.h \ 690 ${debug_srcdir}/hash_map \ 691 ${debug_srcdir}/hash_map.h \ 692 ${debug_srcdir}/hash_multimap.h \ 693 ${debug_srcdir}/hash_multiset.h \ 694 ${debug_srcdir}/hash_set \ 695 ${debug_srcdir}/hash_set.h \ 696 ${debug_srcdir}/list \ 697 ${debug_srcdir}/map \ 698 ${debug_srcdir}/macros.h \ 699 ${debug_srcdir}/map.h \ 700 ${debug_srcdir}/multimap.h \ 701 ${debug_srcdir}/multiset.h \ 702 ${debug_srcdir}/safe_base.h \ 703 ${debug_srcdir}/safe_iterator.h \ 704 ${debug_srcdir}/safe_iterator.tcc \ 705 ${debug_srcdir}/safe_sequence.h \ 706 ${debug_srcdir}/set \ 707 ${debug_srcdir}/set.h \ 708 ${debug_srcdir}/string \ 709 ${debug_srcdir}/vector 710 711# Some of the different "C" header models need extra files. 712# Some "C" header schemes require the "C" compatibility headers. 713# For --enable-cheaders=c_std 714if GLIBCXX_C_HEADERS_C_STD 715c_base_headers_extra = ${c_base_srcdir}/cmath.tcc 716else 717c_base_headers_extra = 718endif 719 720if GLIBCXX_C_HEADERS_COMPATIBILITY 721c_compatibility_headers_extra = ${c_compatibility_headers} 722else 723c_compatibility_headers_extra = 724endif 725 726host_srcdir = ${glibcxx_srcdir}/$(OS_INC_SRCDIR) 727host_builddir = ./${host_alias}/bits 728host_installdir = ${gxx_include_dir}/${host_alias}$(MULTISUBDIR)/bits 729host_headers = \ 730 ${host_srcdir}/ctype_base.h \ 731 ${host_srcdir}/ctype_inline.h \ 732 ${host_srcdir}/ctype_noninline.h \ 733 ${host_srcdir}/os_defines.h \ 734 ${glibcxx_srcdir}/$(ATOMIC_WORD_SRCDIR)/atomic_word.h \ 735 ${glibcxx_srcdir}/$(ABI_TWEAKS_SRCDIR)/cxxabi_tweaks.h \ 736 ${glibcxx_srcdir}/$(CPU_DEFINES_SRCDIR)/cpu_defines.h 737 738# Non-installed host_header files. 739COMPATIBILITY_H = config/abi/compatibility.h 740host_headers_noinst = \ 741 ${glibcxx_srcdir}/$(CLOCALE_INTERNAL_H) \ 742 ${glibcxx_srcdir}/$(COMPATIBILITY_H) 743 744# These host_headers_extra files are all built with ad hoc naming rules. 745host_headers_extra = \ 746 ${host_builddir}/basic_file.h \ 747 ${host_builddir}/c++config.h \ 748 ${host_builddir}/c++allocator.h \ 749 ${host_builddir}/c++io.h \ 750 ${host_builddir}/c++locale.h \ 751 ${host_builddir}/messages_members.h \ 752 ${host_builddir}/time_members.h 753 754thread_host_headers = \ 755 ${host_builddir}/gthr.h \ 756 ${host_builddir}/gthr-single.h \ 757 ${host_builddir}/gthr-posix.h \ 758 ${host_builddir}/gthr-tpf.h \ 759 ${host_builddir}/gthr-default.h 760 761 762pch1_source = ${glibcxx_srcdir}/include/precompiled/stdc++.h 763pch1_output_builddir = ${host_builddir}/stdc++.h.gch 764pch1_output_anchor = ${host_builddir}/stdc++.h 765pch1_output_installdir = ${host_installdir}/stdc++.h.gch 766pch1a_output = ${pch1_output_builddir}/O0g.gch 767pch1b_output = ${pch1_output_builddir}/O2g.gch 768pch1_output = ${pch1a_output} ${pch1b_output} 769 770pch2_source = ${glibcxx_srcdir}/include/precompiled/stdtr1c++.h 771pch2_output_builddir = ${host_builddir}/stdtr1c++.h.gch 772pch2_output_anchor = ${host_builddir}/stdtr1c++.h 773pch2_output_installdir = ${host_installdir}/stdtr1c++.h.gch 774pch2_output = ${pch2_output_builddir}/O2g.gch 775 776pch3_source = ${glibcxx_srcdir}/include/precompiled/extc++.h 777pch3_output_builddir = ${host_builddir}/extc++.h.gch 778pch3_output_anchor = ${host_builddir}/extc++.h 779pch3_output_installdir = ${host_installdir}/extc++.h.gch 780pch3_output = ${pch3_output_builddir}/O2g.gch 781 782 783pch_output = ${pch1_output} ${pch2_output} ${pch3_output} 784pch_output_dirs = \ 785 ${pch1_output_builddir} ${pch2_output_builddir} ${pch3_output_builddir} 786pch_output_anchors = \ 787 ${pch1_output_anchor} ${pch2_output_anchor} ${pch3_output_anchor} 788PCHFLAGS=-Winvalid-pch -Wno-deprecated -x c++-header $(CXXFLAGS) 789if GLIBCXX_BUILD_PCH 790pch_build = ${pch_output} 791pch_install = install-pch 792else 793pch_build = 794pch_install = 795endif 796 797# List of all timestamp files. By keeping only one copy of this list, both 798# CLEANFILES and all-local are kept up-to-date. 799allstamped = \ 800 stamp-std stamp-bits stamp-c_base stamp-c_compatibility \ 801 stamp-backward stamp-ext stamp-pb stamp-tr1 stamp-debug stamp-host 802 803# List of all files that are created by explicit building, editing, or 804# catenation. 805allcreated = \ 806 ${host_builddir}/c++config.h \ 807 ${thread_host_headers} \ 808 ${pch_build} 809 810# Here are the rules for building the headers 811all-local: ${allstamped} ${allcreated} 812 813# This rule is slightly different, in that we must change the name of the 814# local file from std_foo.h to foo. 815stamp-std: ${std_headers} 816 @if [ ! -d "${std_builddir}" ]; then \ 817 mkdir -p ${std_builddir} ;\ 818 fi ;\ 819 if [ ! -f stamp-std ]; then \ 820 (cd ${std_builddir} && for h in $?; do \ 821 build_name=`echo $$h | sed -e 's,.*/std_,,' -e 's,\.h$$,,'` ;\ 822 $(LN_S) $$h ./$${build_name} || true ;\ 823 done) ;\ 824 fi ;\ 825 $(STAMP) stamp-std 826 827stamp-bits: ${bits_headers} 828 @if [ ! -d "${bits_builddir}" ]; then \ 829 mkdir -p ${bits_builddir} ;\ 830 fi ;\ 831 if [ ! -f stamp-bits ]; then \ 832 (cd ${bits_builddir} && $(LN_S) $? . || true) ;\ 833 fi ;\ 834 $(STAMP) stamp-bits 835 836stamp-c_base: stamp-bits ${c_base_headers} ${c_base_headers_extra} 837 @if [ ! -d "${c_base_builddir}" ]; then \ 838 mkdir -p ${c_base_builddir} ;\ 839 fi ;\ 840 if [ ! -f stamp-c_base ]; then \ 841 (cd ${c_base_builddir} && for h in ${c_base_headers}; do \ 842 build_name=`echo $$h | sed -e 's,.*/std_,,' -e 's,\.h$$,,'` ;\ 843 $(LN_S) $$h ./$${build_name} || true ;\ 844 done) ;\ 845 if [ ! -z "${c_base_headers_extra}" ]; then \ 846 (cd ${bits_builddir} && $(LN_S) ${c_base_headers_extra} . || true) ;\ 847 fi ;\ 848 fi ;\ 849 $(STAMP) stamp-c_base 850 851stamp-c_compatibility: ${c_compatibility_headers_extra} 852 @if [ ! -d "${c_compatibility_builddir}" ]; then \ 853 mkdir -p ${c_compatibility_builddir} ;\ 854 fi ;\ 855 if [ ! -f stamp-c_compatibility ]; then \ 856 if [ ! -z "${c_compatibility_headers_extra}" ]; then \ 857 (cd ${c_compatibility_builddir} && $(LN_S) $? . || true) ;\ 858 fi ;\ 859 fi ;\ 860 $(STAMP) stamp-c_compatibility 861 862stamp-backward: ${backward_headers} 863 @if [ ! -d "${backward_builddir}" ]; then \ 864 mkdir -p ${backward_builddir} ;\ 865 fi ;\ 866 if [ ! -f stamp-backward ]; then \ 867 (cd ${backward_builddir} && $(LN_S) $? . || true) ;\ 868 fi ;\ 869 $(STAMP) stamp-backward 870 871stamp-ext: ${ext_headers} 872 @if [ ! -d "${ext_builddir}" ]; then \ 873 mkdir -p ${ext_builddir} ;\ 874 fi ;\ 875 if [ ! -f stamp-ext ]; then \ 876 (cd ${ext_builddir} && $(LN_S) $? . || true) ;\ 877 fi ;\ 878 $(STAMP) stamp-ext 879 880# Have to deal with nested include directories, gah! Strip off source 881# directory before making the link. 882# XXX check ${pb_headers} 883stamp-pb: 884 @if [ ! -d "${pb_builddir}" ]; then \ 885 mkdir -p ${pb_subdirs} ;\ 886 fi 887 @if [ ! -f stamp-pb ]; then \ 888 cd ${pb_builddir} && for h in ${pb_headers1}; do \ 889 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 890 $(LN_S) $$h $${build_name} || true ;\ 891 done ;\ 892 fi 893 @if [ ! -f stamp-pb ]; then \ 894 cd ${pb_builddir} && for h in ${pb_headers2}; do \ 895 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 896 $(LN_S) $$h $${build_name} || true ;\ 897 done ;\ 898 fi 899 @if [ ! -f stamp-pb ]; then \ 900 cd ${pb_builddir} && for h in ${pb_headers3}; do \ 901 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 902 $(LN_S) $$h $${build_name} || true ;\ 903 done ;\ 904 fi 905 @if [ ! -f stamp-pb ]; then \ 906 cd ${pb_builddir} && for h in ${pb_headers4}; do \ 907 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 908 $(LN_S) $$h $${build_name} || true ;\ 909 done ;\ 910 fi 911 @if [ ! -f stamp-pb ]; then \ 912 cd ${pb_builddir} && for h in ${pb_headers5}; do \ 913 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 914 $(LN_S) $$h $${build_name} || true ;\ 915 done ;\ 916 fi 917 @if [ ! -f stamp-pb ]; then \ 918 cd ${pb_builddir} && for h in ${pb_headers6}; do \ 919 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 920 $(LN_S) $$h $${build_name} || true ;\ 921 done ;\ 922 fi 923 @if [ ! -f stamp-pb ]; then \ 924 cd ${pb_builddir} && for h in ${pb_headers7}; do \ 925 build_name=`echo $$h | sed -e "s|${pb_srcdir}|.|g"` ;\ 926 $(LN_S) $$h $${build_name} || true ;\ 927 done ;\ 928 fi 929 $(STAMP) stamp-pb 930 931stamp-tr1: ${tr1_headers} 932 @if [ ! -d "${tr1_builddir}" ]; then \ 933 mkdir -p ${tr1_builddir} ;\ 934 fi ;\ 935 if [ ! -f stamp-tr1 ]; then \ 936 (cd ${tr1_builddir} && $(LN_S) $? . || true) ;\ 937 fi ;\ 938 $(STAMP) stamp-tr1 939 940stamp-debug: ${debug_headers} 941 @if [ ! -d "${debug_builddir}" ]; then \ 942 mkdir -p ${debug_builddir} ;\ 943 fi ;\ 944 if [ ! -f stamp-debug ]; then \ 945 (cd ${debug_builddir} && @LN_S@ $? . || true) ;\ 946 fi ;\ 947 $(STAMP) stamp-debug 948 949stamp-${host_alias}: 950 @if [ ! -d ${host_builddir} ]; then \ 951 mkdir -p ${host_builddir} ;\ 952 fi ;\ 953 $(STAMP) stamp-${host_alias} 954 955# Host includes static. 956# XXX Missing dependency info for {host_headers_extra} 957stamp-host: ${host_headers} ${host_headers_noinst} stamp-${host_alias} 958 @if [ ! -f stamp-host ]; then \ 959 (cd ${host_builddir} ;\ 960 $(LN_S) ${host_headers} . || true ;\ 961 $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_H) basic_file.h || true ;\ 962 $(LN_S) ${glibcxx_srcdir}/$(ALLOCATOR_H) c++allocator.h || true ;\ 963 $(LN_S) ${glibcxx_srcdir}/$(CSTDIO_H) c++io.h || true ;\ 964 $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_H) c++locale.h || true ;\ 965 $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_INTERNAL_H) . || true ;\ 966 $(LN_S) ${glibcxx_srcdir}/$(COMPATIBILITY_H) . || true ;\ 967 $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_H) messages_members.h || true ;\ 968 $(LN_S) ${glibcxx_srcdir}/$(CTIME_H) time_members.h || true);\ 969 fi ;\ 970 $(STAMP) stamp-host 971 972# Host includes dynamic. 973if ENABLE_SYMVERS_GNU_NAMESPACE 974stamp-namespace-version: 975 echo 1 > stamp-namespace-version 976else 977stamp-namespace-version: 978 echo 0 > stamp-namespace-version 979endif 980 981if ENABLE_VISIBILITY 982stamp-visibility: 983 echo 1 > stamp-visibility 984else 985stamp-visibility: 986 echo 0 > stamp-visibility 987endif 988 989# NB: The non-empty default ldbl_compat works around an AIX sed 990# oddity, see libstdc++/31957 for details. 991${host_builddir}/c++config.h: ${CONFIG_HEADER} \ 992 ${glibcxx_srcdir}/include/bits/c++config \ 993 stamp-${host_alias} \ 994 ${toplevel_srcdir}/gcc/DATESTAMP \ 995 stamp-namespace-version \ 996 stamp-visibility 997 @date=`cat ${toplevel_srcdir}/gcc/DATESTAMP` ;\ 998 nsa_version=`cat stamp-namespace-version` ;\ 999 visibility=`cat stamp-visibility` ;\ 1000 ldbl_compat='s,g,g,' ;\ 1001 grep "^[ ]*#[ ]*define[ ][ ]*_GLIBCXX_LONG_DOUBLE_COMPAT[ ][ ]*1[ ]*$$" \ 1002 ${CONFIG_HEADER} > /dev/null 2>&1 \ 1003 && ldbl_compat='s,^#undef _GLIBCXX_LONG_DOUBLE_COMPAT$$,#define _GLIBCXX_LONG_DOUBLE_COMPAT 1,' ;\ 1004 sed -e "s,define __GLIBCXX__,define __GLIBCXX__ $$date," \ 1005 -e "s,define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION, define _GLIBCXX_NAMESPACE_ASSOCIATION_VERSION $$nsa_version," \ 1006 -e "s,define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY, define _GLIBCXX_HAVE_ATTRIBUTE_VISIBILITY $$visibility," \ 1007 -e "$$ldbl_compat" \ 1008 < ${glibcxx_srcdir}/include/bits/c++config > $@ ;\ 1009 sed -e 's/HAVE_/_GLIBCXX_HAVE_/g' \ 1010 -e 's/PACKAGE/_GLIBCXX_PACKAGE/g' \ 1011 -e 's/VERSION/_GLIBCXX_VERSION/g' \ 1012 -e 's/WORDS_/_GLIBCXX_WORDS_/g' \ 1013 -e '/[ ]_GLIBCXX_LONG_DOUBLE_COMPAT[ ]/d' \ 1014 < ${CONFIG_HEADER} >> $@ ;\ 1015 echo "" >> $@ ;\ 1016 echo "#endif // _CXXCONFIG_" >> $@ 1017 1018# Host includes for threads 1019uppercase = [ABCDEFGHIJKLMNOPQRSTUVWXYZ_] 1020 1021${host_builddir}/gthr.h: ${toplevel_srcdir}/gcc/gthr.h stamp-${host_alias} 1022 sed -e '/^#pragma/b' \ 1023 -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCXX_\1/g' \ 1024 -e 's/_GLIBCXX_SUPPORTS_WEAK/__GXX_WEAK__/g' \ 1025 -e 's,^#include "\(.*\)",#include <bits/\1>,g' \ 1026 < ${toplevel_srcdir}/gcc/gthr.h > $@ 1027 1028${host_builddir}/gthr-single.h: ${toplevel_srcdir}/gcc/gthr-single.h \ 1029 stamp-${host_alias} 1030 sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \ 1031 -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \ 1032 < ${toplevel_srcdir}/gcc/gthr-single.h > $@ 1033 1034${host_builddir}/gthr-posix.h: ${toplevel_srcdir}/gcc/gthr-posix.h \ 1035 stamp-${host_alias} 1036 sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \ 1037 -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \ 1038 -e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \ 1039 -e 's/\(${uppercase}*USE_WEAK\)/_GLIBCXX_\1/g' \ 1040 < ${toplevel_srcdir}/gcc/gthr-posix.h > $@ 1041 1042${host_builddir}/gthr-tpf.h: ${toplevel_srcdir}/gcc/gthr-tpf.h \ 1043 stamp-${host_alias} 1044 sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \ 1045 -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \ 1046 -e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \ 1047 -e 's/\(${uppercase}*USE_WEAK\)/_GLIBCXX_\1/g' \ 1048 < ${toplevel_srcdir}/gcc/gthr-tpf.h > $@ 1049 1050${host_builddir}/gthr-default.h: ${toplevel_srcdir}/gcc/${glibcxx_thread_h} \ 1051 stamp-${host_alias} 1052 sed -e 's/\(UNUSED\)/_GLIBCXX_\1/g' \ 1053 -e 's/\(GCC${uppercase}*_H\)/_GLIBCXX_\1/g' \ 1054 -e 's/SUPPORTS_WEAK/__GXX_WEAK__/g' \ 1055 -e 's/\(${uppercase}*USE_WEAK\)/_GLIBCXX_\1/g' \ 1056 -e 's,^#include "\(.*\)",#include <bits/\1>,g' \ 1057 < ${toplevel_srcdir}/gcc/${glibcxx_thread_h} > $@ 1058 1059# Build two precompiled C++ includes, stdc++.h.gch/*.gch 1060${pch1a_output}: ${allstamped} ${host_builddir}/c++config.h ${pch1_source} 1061 if [ ! -d "${pch1_output_builddir}" ]; then \ 1062 mkdir -p ${pch1_output_builddir}; \ 1063 fi; \ 1064 $(CXX) $(PCHFLAGS) $(AM_CPPFLAGS) -O0 -g ${pch1_source} -o $@ 1065 touch ${pch1_output_anchor} 1066 1067${pch1b_output}: ${allstamped} ${host_builddir}/c++config.h ${pch1_source} 1068 if [ ! -d "${pch1_output_builddir}" ]; then \ 1069 mkdir -p ${pch1_output_builddir}; \ 1070 fi; \ 1071 $(CXX) $(PCHFLAGS) $(AM_CPPFLAGS) -O2 -g ${pch1_source} -o $@ 1072 touch ${pch1_output_anchor} 1073 1074# Build a precompiled TR1 include, stdtr1c++.h.gch/O2.gch 1075${pch2_output}: ${pch2_source} ${pch1_output} 1076 if [ ! -d "${pch2_output_builddir}" ]; then \ 1077 mkdir -p ${pch2_output_builddir}; \ 1078 fi; \ 1079 $(CXX) $(PCHFLAGS) $(AM_CPPFLAGS) -O2 -g ${pch2_source} -o $@ 1080 touch ${pch2_output_anchor} 1081 1082# Build a precompiled extension include, extc++.h.gch/O2.gch 1083${pch3_output}: ${pch3_source} ${pch2_output} 1084 if [ ! -d "${pch3_output_builddir}" ]; then \ 1085 mkdir -p ${pch3_output_builddir}; \ 1086 fi; \ 1087 $(CXX) $(PCHFLAGS) $(AM_CPPFLAGS) -O2 -g ${pch3_source} -o $@ 1088 touch ${pch3_output_anchor} 1089 1090# For robustness sake (in light of junk files or in-source 1091# configuration), copy from the build or source tree to the install 1092# tree using only the human-maintained file lists and directory 1093# components. Yes, with minor differences, this is sheer duplication 1094# of the staging rules above using $(INSTALL_DATA) instead of LN_S and 1095# `$(mkinstalldirs)' instead of `mkdir -p'. In particular, 1096# host_headers_extra are taken out of the build tree staging area; 1097# the rest are taken from the original source tree. 1098 1099if GLIBCXX_HOSTED 1100install-data-local: install-headers ${pch_install} 1101else 1102install-data-local: install-freestanding-headers 1103endif 1104 1105# This is a subset of the full install-headers rule. We only need <cstddef>, 1106# <limits>, <cstdlib>, <cstdarg>, <new>, <typeinfo>, <exception>, and any 1107# files which they include (and which we provide). The last three headers 1108# are installed by libsupc++, so only the first four and the sub-includes 1109# are copied here. 1110install-freestanding-headers: 1111 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir} 1112 $(mkinstalldirs) $(DESTDIR)${host_installdir} 1113 for file in ${host_srcdir}/os_defines.h ${host_builddir}/c++config.h; do \ 1114 $(INSTALL_DATA) $${file} $(DESTDIR)${host_installdir}; done 1115 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${std_builddir} 1116 $(INSTALL_DATA) ${std_builddir}/limits $(DESTDIR)${gxx_include_dir}/${std_builddir} 1117 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${c_base_builddir} 1118 for file in cstddef cstdlib cstdarg; do \ 1119 $(INSTALL_DATA) ${c_base_builddir}/$${file} $(DESTDIR)${gxx_include_dir}/${c_base_builddir}; done 1120 1121# The real deal. 1122install-headers: 1123 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir} 1124 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${bits_builddir} 1125 for file in ${bits_headers}; do \ 1126 $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${bits_builddir}; done 1127 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${backward_builddir} 1128 for file in ${backward_headers}; do \ 1129 $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${backward_builddir}; done 1130 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${ext_builddir} 1131 for file in ${ext_headers}; do \ 1132 $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${ext_builddir}; done 1133 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${pb_builddir} 1134 for dir in ${pb_subdirs}; do \ 1135 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/$${dir} ; done 1136 for file in ${pb_headers1}; do \ 1137 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1138 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1139 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1140 for file in ${pb_headers2}; do \ 1141 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1142 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1143 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1144 for file in ${pb_headers3}; do \ 1145 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1146 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1147 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1148 for file in ${pb_headers4}; do \ 1149 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1150 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1151 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1152 for file in ${pb_headers5}; do \ 1153 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1154 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1155 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1156 for file in ${pb_headers6}; do \ 1157 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1158 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1159 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1160 for file in ${pb_headers7}; do \ 1161 install_base=$(DESTDIR)${gxx_include_dir}/${pb_builddir} ; \ 1162 relative_name=`echo $$file | sed -e "s|${pb_srcdir}|.|g"` ;\ 1163 $(INSTALL_DATA) $${file} $${install_base}/$${relative_name} ; done 1164 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${tr1_builddir} 1165 for file in ${tr1_headers}; do \ 1166 $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${tr1_builddir}; done 1167 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${c_base_builddir} 1168 for file in ${c_base_headers_rename}; do \ 1169 $(INSTALL_DATA) ${c_base_builddir}/$${file} $(DESTDIR)${gxx_include_dir}/${c_base_builddir}; done 1170 c_base_headers_extra_install='$(c_base_headers_extra)';\ 1171 for file in $$c_base_headers_extra_install; do \ 1172 $(INSTALL_DATA) $$file $(DESTDIR)${gxx_include_dir}/${bits_builddir}; done 1173 c_compatibility_headers_install='$(c_compatibility_headers_extra)';\ 1174 for file in $$c_compatibility_headers_install; do \ 1175 $(INSTALL_DATA) $$file $(DESTDIR)${gxx_include_dir}; done 1176 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${std_builddir} 1177 for file in ${std_headers_rename}; do \ 1178 $(INSTALL_DATA) ${std_builddir}/$${file} $(DESTDIR)${gxx_include_dir}/${std_builddir}; done 1179 $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${debug_builddir} 1180 for file in ${debug_headers}; do \ 1181 $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${debug_builddir}; done 1182 $(mkinstalldirs) $(DESTDIR)${host_installdir} 1183 for file in ${host_headers} ${host_headers_extra} \ 1184 ${thread_host_headers}; do \ 1185 $(INSTALL_DATA) $${file} $(DESTDIR)${host_installdir}; done 1186 1187install-pch: 1188 $(mkinstalldirs) $(DESTDIR)${pch1_output_installdir} 1189 for file in ${pch1_output_builddir}/*; do \ 1190 $(INSTALL_DATA) $$file $(DESTDIR)${pch1_output_installdir}; done 1191 $(mkinstalldirs) $(DESTDIR)${pch2_output_installdir} 1192 for file in ${pch2_output_builddir}/*; do \ 1193 $(INSTALL_DATA) $$file $(DESTDIR)${pch2_output_installdir}; done 1194 $(INSTALL_DATA) ${pch1_output_anchor} $(DESTDIR)${host_installdir} 1195 $(INSTALL_DATA) ${pch2_output_anchor} $(DESTDIR)${host_installdir} 1196 1197# By adding these files here, automake will remove them for 'make clean' 1198CLEANFILES = ${pch_output} ${pch_output_anchors} 1199 1200# To remove directories. 1201clean-local: 1202 rm -rf ${pch_output_dirs} 1203 1204# Stop implicit '.o' make rules from ever stomping on extensionless 1205# headers, in the improbable case where some foolish, crack-addled 1206# developer tries to create them via make in the include build 1207# directory. (This is more of an example of how this kind of rule can 1208# be made.) 1209.PRECIOUS: $(std_headers_rename) $(c_base_headers_rename) 1210$(std_headers_rename): ; @: 1211$(c_base_headers_rename): ; @: 1212