OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / include / Makefile.am
1 ## Makefile for the include subdirectory of the GNU C++ Standard library.
2 ##
3 ## Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
4 ##
5 ## This file is part of the libstdc++ version 3 distribution.
6 ## Process this file with automake to produce Makefile.in.
7
8 ## This file is part of the GNU ISO C++ Library.  This library is free
9 ## software; you can redistribute it and/or modify it under the
10 ## terms of the GNU General Public License as published by the
11 ## Free Software Foundation; either version 2, or (at your option)
12 ## any later version.
13
14 ## This library is distributed in the hope that it will be useful,
15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ## GNU General Public License for more details.
18
19 ## You should have received a copy of the GNU General Public License along
20 ## with this library; see the file COPYING.  If not, write to the Free
21 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 ## USA.
23
24 AUTOMAKE_OPTIONS = 1.3 cygnus
25 MAINT_CHARSET = latin1
26
27 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
28
29 # Cross compiler and multilib support.
30 CXX = @glibcpp_CXX@
31 glibcpp_srcdir=@glibcpp_srcdir@
32 glibcpp_builddir=@glibcpp_builddir@
33
34 GLIBCPP_INCLUDES = @GLIBCPP_INCLUDES@
35 LIBSUPCXX_INCLUDES = @LIBSUPCXX_INCLUDES@
36 INCLUDES = -nostdinc++ $(GLIBCPP_INCLUDES) $(LIBSUPCXX_INCLUDES)
37
38 # Standard C++ includes.
39 std_srcdir = ${glibcpp_srcdir}/include/std
40 std_builddir = .
41 std_headers = \
42         ${std_srcdir}/std_algorithm.h \
43         ${std_srcdir}/std_bitset.h \
44         ${std_srcdir}/std_complex.h \
45         ${std_srcdir}/std_deque.h \
46         ${std_srcdir}/std_fstream.h \
47         ${std_srcdir}/std_functional.h \
48         ${std_srcdir}/std_iomanip.h \
49         ${std_srcdir}/std_ios.h \
50         ${std_srcdir}/std_iosfwd.h \
51         ${std_srcdir}/std_iostream.h \
52         ${std_srcdir}/std_istream.h \
53         ${std_srcdir}/std_iterator.h \
54         ${std_srcdir}/std_limits.h \
55         ${std_srcdir}/std_list.h \
56         ${std_srcdir}/std_locale.h \
57         ${std_srcdir}/std_map.h \
58         ${std_srcdir}/std_memory.h \
59         ${std_srcdir}/std_numeric.h \
60         ${std_srcdir}/std_ostream.h \
61         ${std_srcdir}/std_queue.h \
62         ${std_srcdir}/std_set.h \
63         ${std_srcdir}/std_sstream.h \
64         ${std_srcdir}/std_stack.h \
65         ${std_srcdir}/std_stdexcept.h \
66         ${std_srcdir}/std_streambuf.h \
67         ${std_srcdir}/std_string.h \
68         ${std_srcdir}/std_utility.h \
69         ${std_srcdir}/std_valarray.h \
70         ${std_srcdir}/std_vector.h
71 # Renamed at build time. 
72 std_headers_rename = \
73         algorithm \
74         bitset \
75         complex \
76         deque \
77         fstream \
78         functional \
79         iomanip \
80         ios \
81         iosfwd \
82         iostream \
83         istream \
84         iterator \
85         limits \
86         list \
87         locale \
88         map \
89         memory \
90         numeric \
91         ostream \
92         queue \
93         set \
94         sstream \
95         stack \
96         stdexcept \
97         streambuf \
98         string \
99         utility \
100         valarray \
101         vector
102
103 bits_srcdir = ${glibcpp_srcdir}/include/bits
104 bits_builddir = ./bits
105 bits_headers = \
106         ${bits_srcdir}/basic_ios.h \
107         ${bits_srcdir}/basic_ios.tcc \
108         ${bits_srcdir}/basic_string.h \
109         ${bits_srcdir}/basic_string.tcc \
110         ${bits_srcdir}/boost_concept_check.h \
111         ${bits_srcdir}/char_traits.h \
112         ${bits_srcdir}/codecvt.h \
113         ${bits_srcdir}/concept_check.h \
114         ${bits_srcdir}/cpp_type_traits.h \
115         ${bits_srcdir}/demangle.h \
116         ${bits_srcdir}/deque.tcc \
117         ${bits_srcdir}/fpos.h \
118         ${bits_srcdir}/fstream.tcc \
119         ${bits_srcdir}/functexcept.h \
120         ${bits_srcdir}/gslice.h \
121         ${bits_srcdir}/gslice_array.h \
122         ${bits_srcdir}/indirect_array.h \
123         ${bits_srcdir}/ios_base.h \
124         ${bits_srcdir}/istream.tcc \
125         ${bits_srcdir}/list.tcc \
126         ${bits_srcdir}/locale_classes.h \
127         ${bits_srcdir}/locale_facets.h \
128         ${bits_srcdir}/locale_facets.tcc \
129         ${bits_srcdir}/localefwd.h \
130         ${bits_srcdir}/mask_array.h \
131         ${bits_srcdir}/ostream.tcc \
132         ${bits_srcdir}/pthread_allocimpl.h \
133         ${bits_srcdir}/stream_iterator.h \
134         ${bits_srcdir}/streambuf_iterator.h \
135         ${bits_srcdir}/slice_array.h \
136         ${bits_srcdir}/sstream.tcc \
137         ${bits_srcdir}/stl_algo.h \
138         ${bits_srcdir}/stl_algobase.h \
139         ${bits_srcdir}/stl_alloc.h \
140         ${bits_srcdir}/stl_bvector.h \
141         ${bits_srcdir}/stl_construct.h \
142         ${bits_srcdir}/stl_deque.h \
143         ${bits_srcdir}/stl_function.h \
144         ${bits_srcdir}/stl_heap.h \
145         ${bits_srcdir}/stl_iterator.h \
146         ${bits_srcdir}/stl_iterator_base_funcs.h \
147         ${bits_srcdir}/stl_iterator_base_types.h \
148         ${bits_srcdir}/stl_list.h \
149         ${bits_srcdir}/stl_map.h \
150         ${bits_srcdir}/stl_multimap.h \
151         ${bits_srcdir}/stl_multiset.h \
152         ${bits_srcdir}/stl_numeric.h \
153         ${bits_srcdir}/stl_pair.h \
154         ${bits_srcdir}/stl_pthread_alloc.h \
155         ${bits_srcdir}/stl_queue.h \
156         ${bits_srcdir}/stl_raw_storage_iter.h \
157         ${bits_srcdir}/stl_relops.h \
158         ${bits_srcdir}/stl_set.h \
159         ${bits_srcdir}/stl_stack.h \
160         ${bits_srcdir}/stl_tempbuf.h \
161         ${bits_srcdir}/stl_threads.h \
162         ${bits_srcdir}/stl_tree.h \
163         ${bits_srcdir}/stl_uninitialized.h \
164         ${bits_srcdir}/stl_vector.h \
165         ${bits_srcdir}/streambuf.tcc \
166         ${bits_srcdir}/stringfwd.h \
167         ${bits_srcdir}/type_traits.h \
168         ${bits_srcdir}/valarray_array.h \
169         ${bits_srcdir}/valarray_array.tcc \
170         ${bits_srcdir}/valarray_before.h \
171         ${bits_srcdir}/valarray_after.h \
172         ${bits_srcdir}/vector.tcc
173
174 backward_srcdir = ${glibcpp_srcdir}/include/backward
175 backward_builddir = ./backward
176 backward_headers = \
177         ${backward_srcdir}/complex.h \
178         ${backward_srcdir}/iomanip.h \
179         ${backward_srcdir}/istream.h \
180         ${backward_srcdir}/ostream.h \
181         ${backward_srcdir}/stream.h \
182         ${backward_srcdir}/streambuf.h \
183         ${backward_srcdir}/algo.h \
184         ${backward_srcdir}/algobase.h \
185         ${backward_srcdir}/alloc.h \
186         ${backward_srcdir}/bvector.h \
187         ${backward_srcdir}/defalloc.h \
188         ${backward_srcdir}/deque.h \
189         ${backward_srcdir}/function.h \
190         ${backward_srcdir}/hash_map.h \
191         ${backward_srcdir}/hash_set.h \
192         ${backward_srcdir}/hashtable.h \
193         ${backward_srcdir}/heap.h \
194         ${backward_srcdir}/iostream.h \
195         ${backward_srcdir}/iterator.h \
196         ${backward_srcdir}/list.h \
197         ${backward_srcdir}/map.h \
198         ${backward_srcdir}/multimap.h \
199         ${backward_srcdir}/new.h \
200         ${backward_srcdir}/multiset.h \
201         ${backward_srcdir}/pair.h \
202         ${backward_srcdir}/queue.h \
203         ${backward_srcdir}/rope.h \
204         ${backward_srcdir}/set.h \
205         ${backward_srcdir}/slist.h \
206         ${backward_srcdir}/stack.h \
207         ${backward_srcdir}/tempbuf.h \
208         ${backward_srcdir}/tree.h \
209         ${backward_srcdir}/vector.h \
210         ${backward_srcdir}/fstream.h \
211         ${backward_srcdir}/strstream \
212         ${backward_srcdir}/backward_warning.h
213
214 ext_srcdir = ${glibcpp_srcdir}/include/ext
215 ext_builddir = ./ext
216 ext_headers = \
217         ${ext_srcdir}/algorithm \
218         ${ext_srcdir}/enc_filebuf.h \
219         ${ext_srcdir}/stdio_filebuf.h \
220         ${ext_srcdir}/functional \
221         ${ext_srcdir}/hash_map \
222         ${ext_srcdir}/hash_set \
223         ${ext_srcdir}/iterator \
224         ${ext_srcdir}/memory \
225         ${ext_srcdir}/numeric \
226         ${ext_srcdir}/rb_tree \
227         ${ext_srcdir}/rope \
228         ${ext_srcdir}/ropeimpl.h \
229         ${ext_srcdir}/slist \
230         ${ext_srcdir}/stl_hash_fun.h \
231         ${ext_srcdir}/stl_hashtable.h \
232         ${ext_srcdir}/stl_rope.h
233
234 # This is the common subset of files that all three "C" header models use.
235 c_base_srcdir = @C_INCLUDE_DIR@
236 c_base_builddir = .
237 c_base_headers = \
238         ${c_base_srcdir}/std_cassert.h \
239         ${c_base_srcdir}/std_cctype.h \
240         ${c_base_srcdir}/std_cerrno.h \
241         ${c_base_srcdir}/std_cfloat.h \
242         ${c_base_srcdir}/std_ciso646.h \
243         ${c_base_srcdir}/std_climits.h \
244         ${c_base_srcdir}/std_clocale.h \
245         ${c_base_srcdir}/std_cmath.h \
246         ${c_base_srcdir}/std_csetjmp.h \
247         ${c_base_srcdir}/std_csignal.h \
248         ${c_base_srcdir}/std_cstdarg.h \
249         ${c_base_srcdir}/std_cstddef.h \
250         ${c_base_srcdir}/std_cstdio.h \
251         ${c_base_srcdir}/std_cstdlib.h \
252         ${c_base_srcdir}/std_cstring.h \
253         ${c_base_srcdir}/std_ctime.h \
254         ${c_base_srcdir}/std_cwchar.h \
255         ${c_base_srcdir}/std_cwctype.h 
256 c_base_headers_rename = \
257         cassert \
258         cctype \
259         cerrno \
260         cfloat \
261         ciso646 \
262         climits \
263         clocale \
264         cmath \
265         csetjmp \
266         csignal \
267         cstdarg \
268         cstddef \
269         cstdio \
270         cstdlib \
271         cstring \
272         ctime \
273         cwchar \
274         cwctype 
275
276 # "C" compatibility headers.
277 c_compatibility_srcdir = ${glibcpp_srcdir}/include/c_compatibility
278 c_compatibility_builddir = .
279 c_compatibility_headers = \
280         ${c_compatibility_srcdir}/assert.h \
281         ${c_compatibility_srcdir}/ctype.h \
282         ${c_compatibility_srcdir}/errno.h \
283         ${c_compatibility_srcdir}/float.h \
284         ${c_compatibility_srcdir}/iso646.h \
285         ${c_compatibility_srcdir}/limits.h \
286         ${c_compatibility_srcdir}/locale.h \
287         ${c_compatibility_srcdir}/math.h \
288         ${c_compatibility_srcdir}/setjmp.h \
289         ${c_compatibility_srcdir}/signal.h \
290         ${c_compatibility_srcdir}/stdarg.h \
291         ${c_compatibility_srcdir}/stddef.h \
292         ${c_compatibility_srcdir}/stdio.h \
293         ${c_compatibility_srcdir}/stdlib.h \
294         ${c_compatibility_srcdir}/string.h \
295         ${c_compatibility_srcdir}/time.h \
296         ${c_compatibility_srcdir}/wchar.h \
297         ${c_compatibility_srcdir}/wctype.h 
298
299 # Some of the different "C" header models need extra files.
300 # Some "C" header schemes require the "C" compatibility headers.
301 # For --enable-cheaders=c_std
302 if GLIBCPP_C_HEADERS_C_STD
303 c_base_headers_extra = ${c_base_srcdir}/cmath.tcc 
304 else
305 c_base_headers_extra = 
306 endif
307
308 if GLIBCPP_C_HEADERS_COMPATIBILITY
309 c_compatibility_headers_extra = ${c_compatibility_headers}
310 else
311 c_compatibility_headers_extra = 
312 endif
313
314 target_srcdir = ${glibcpp_srcdir}/@OS_INC_SRCDIR@
315 target_builddir = ./${target_alias}/bits
316 target_headers = \
317         ${target_srcdir}/ctype_base.h \
318         ${target_srcdir}/ctype_inline.h \
319         ${target_srcdir}/ctype_noninline.h \
320         ${target_srcdir}/os_defines.h \
321         ${glibcpp_srcdir}/@ATOMICITY_INC_SRCDIR@/atomicity.h 
322
323 # Non-installed target_header files.
324 target_headers_noinst = \
325         ${glibcpp_srcdir}/@CLOCALE_INTERNAL_H@
326
327 # These target_headers_extra files are all built with ad hoc naming rules.
328 target_headers_extra = \
329         ${target_builddir}/basic_file.h \
330         ${target_builddir}/c++config.h \
331         ${target_builddir}/c++io.h \
332         ${target_builddir}/c++locale.h \
333         ${target_builddir}/messages_members.h \
334         ${target_builddir}/time_members.h \
335         ${target_builddir}/codecvt_specializations.h
336
337 thread_target_headers = \
338         ${target_builddir}/gthr.h \
339         ${target_builddir}/gthr-single.h \
340         ${target_builddir}/gthr-posix.h \
341         ${target_builddir}/gthr-default.h
342
343 pch_input = stdc++.h
344 pch_output = stdc++.h.gch
345 pch_source = ${glibcpp_srcdir}/include/${pch_input}
346
347 # List of all timestamp files.  By keeping only one copy of this list, both
348 # CLEANFILES and all-local are kept up-to-date.
349 allstamps = \
350         stamp-std stamp-bits stamp-c_base stamp-c_compatibility \
351         stamp-backward stamp-ext stamp-target
352
353 # Here are the rules for building the headers
354 all-local: ${target_builddir}/c++config.h ${thread_target_headers} ${allstamps}
355
356 # This rule is slightly different, in that we must change the name of the
357 # local file from std_foo.h to foo.
358 stamp-std: ${std_headers}
359         @if [ ! -d "${std_builddir}" ]; then \
360           mkdir -p ${std_builddir} ;\
361         fi ;\
362         if [ ! -f stamp-std ]; then \
363           (cd ${std_builddir} && for h in $?; do \
364             official_name=`echo $$h | sed -e 's,.*/std_,,' -e 's,\.h$$,,'` ;\
365             @LN_S@ $$h ./$${official_name} || true ;\
366           done) ;\
367           echo `date` > stamp-std ;\
368         fi
369
370 PCHFLAGS=-Winvalid-pch -x c++-header $(CXXFLAGS)
371 stamp-stdc++-precompile: stamp-std ${target_builddir}/c++config.h ${pch_source}
372         if [ ! -f "${pch_output}" ]; then \
373           $(CXX) $(PCHFLAGS) $(INCLUDES) ${pch_source} -o ${pch_output}; \
374           touch ${pch_input}; \
375         fi; \
376         touch stamp-stdc++-precompile
377
378 stamp-bits: ${bits_headers}
379         @if [ ! -d "${bits_builddir}" ]; then \
380           mkdir -p ${bits_builddir} ;\
381         fi ;\
382         if [ ! -f stamp-bits ]; then \
383           (cd ${bits_builddir} && @LN_S@ $? . || true) ;\
384           echo `date` > stamp-bits ;\
385         fi
386
387 stamp-c_base: ${c_base_headers} ${c_base_headers_extra} 
388         @if [ ! -d "${c_base_builddir}" ]; then \
389           mkdir -p ${c_base_builddir} ;\
390         fi ;\
391         (cd ${c_base_builddir} && for h in ${c_base_headers}; do \
392           official_name=`echo $$h | sed -e 's,.*/std_,,' -e 's,\.h$$,,'` ;\
393           @LN_S@ $$h ./$${official_name} || true ;\
394         done) ;\
395         if [ ! -f stamp-c_base ]; then \
396           if [ ! -z "${c_base_headers_extra}" ]; then \
397           (cd ${bits_builddir} && @LN_S@ ${c_base_headers_extra}  . || true) ;\
398           fi ;\
399           echo `date` > stamp-c_base ;\
400         fi
401
402 stamp-c_compatibility: ${c_compatibility_headers_extra}
403         @if [ ! -d "${c_compatibility_builddir}" ]; then \
404           mkdir -p ${c_compatibility_builddir} ;\
405         fi ;\
406         if [ ! -f stamp-c_compatibility ]; then \
407           if [ ! -z "${c_compatibility_headers_extra}" ]; then \
408             (cd ${c_compatibility_builddir} && @LN_S@ $? . || true) ;\
409           fi ;\
410           echo `date` > stamp-c_compatibility ;\
411         fi 
412
413 stamp-backward: ${backward_headers}
414         @if [ ! -d "${backward_builddir}" ]; then \
415           mkdir -p ${backward_builddir} ;\
416         fi ;\
417         if [ ! -f stamp-backward ]; then \
418           (cd ${backward_builddir} && @LN_S@ $? . || true) ;\
419           echo `date` > stamp-backward ;\
420         fi
421
422 stamp-ext: ${ext_headers}
423         @if [ ! -d "${ext_builddir}" ]; then \
424             mkdir -p ${ext_builddir} ;\
425         fi ;\
426         if [ ! -f stamp-ext ]; then \
427           (cd ${ext_builddir} && @LN_S@ $? . || true) ;\
428           echo `date` > stamp-ext ;\
429         fi
430
431 stamp-${target_alias}:
432         @if [ ! -d ${target_builddir} ]; then \
433           mkdir -p ${target_builddir} ;\
434           echo `date` > stamp-${target_alias} ;\
435         fi
436
437 # Target includes static.
438 # XXX Missing dependency info for {target_headers_extra}
439 stamp-target: ${target_headers} ${target_headers_noinst} stamp-${target_alias}
440         @if [ ! -f stamp-target ]; then \
441           (cd ${target_builddir} ;\
442           @LN_S@ ${target_headers} . || true ;\
443           @LN_S@ ${glibcpp_srcdir}/@BASIC_FILE_H@ basic_file.h || true ;\
444           @LN_S@ ${glibcpp_srcdir}/@CSTDIO_H@ c++io.h || true ;\
445           @LN_S@ ${glibcpp_srcdir}/@CLOCALE_H@ c++locale.h || true ;\
446           @LN_S@ ${glibcpp_srcdir}/@CLOCALE_INTERNAL_H@ . || true ;\
447           @LN_S@ ${glibcpp_srcdir}/@CMESSAGES_H@ messages_members.h || true ;\
448           @LN_S@ ${glibcpp_srcdir}/@CTIME_H@ time_members.h || true ;\
449           @LN_S@ ${glibcpp_srcdir}/@CCODECVT_H@ codecvt_specializations.h || true);\
450           echo `date` > stamp-target ; \
451         fi
452
453 # Target includes dynamic.
454 ${target_builddir}/c++config.h: ${CONFIG_HEADER} \
455                                 ${glibcpp_srcdir}/include/bits/c++config \
456                                 stamp-${target_alias}
457         @cat ${glibcpp_srcdir}/include/bits/c++config > $@ ;\
458         sed -e 's/HAVE_/_GLIBCPP_HAVE_/g' \
459             -e 's/PACKAGE/_GLIBCPP_PACKAGE/g' \
460             -e 's/VERSION/_GLIBCPP_VERSION/g' \
461             -e 's/WORDS_/_GLIBCPP_WORDS_/g' \
462             < ${CONFIG_HEADER} >> $@ ;\
463         echo "#endif // _CPP_CPPCONFIG_" >>$@
464
465 # Target includes for threads
466 glibcpp_thread_h = @glibcpp_thread_h@
467 uppercase = [ABCDEFGHIJKLMNOPQRSTUVWXYZ_]
468
469 ${target_builddir}/gthr.h: ${toplevel_srcdir}/gcc/gthr.h stamp-${target_alias}
470         sed -e '/^#/s/\(${uppercase}${uppercase}*\)/_GLIBCPP_\1/g' \
471             -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
472             < ${toplevel_srcdir}/gcc/gthr.h > $@
473
474 ${target_builddir}/gthr-single.h: ${toplevel_srcdir}/gcc/gthr-single.h \
475                                   stamp-${target_alias}
476         sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
477             -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
478             < ${toplevel_srcdir}/gcc/gthr-single.h > $@
479
480 ${target_builddir}/gthr-posix.h: ${toplevel_srcdir}/gcc/gthr-posix.h \
481                                    stamp-${target_alias}
482         sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
483             -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
484             -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \
485             < ${toplevel_srcdir}/gcc/gthr-posix.h > $@
486
487 ${target_builddir}/gthr-default.h: ${toplevel_srcdir}/gcc/${glibcpp_thread_h} \
488                                    stamp-${target_alias}
489         sed -e 's/\(UNUSED\)/_GLIBCPP_\1/g' \
490             -e 's/\(GCC${uppercase}*_H\)/_GLIBCPP_\1/g' \
491             -e 's/\(${uppercase}*WEAK\)/_GLIBCPP_\1/g' \
492             -e 's,^#include "\(.*\)",#include <bits/\1>,g' \
493             < ${toplevel_srcdir}/gcc/${glibcpp_thread_h} > $@
494
495 # For robustness sake (in light of junk files or in-source
496 # configuration), copy from the build or source tree to the install
497 # tree using only the human-maintained file lists and directory
498 # components.  Yes, with minor differences, this is sheer duplication
499 # of the staging rules above using $(INSTALL_DATA) instead of LN_S and
500 # `$(mkinstalldirs)' instead of `mkdir -p'.  In particular,
501 # target_headers_extra are taken out of the build tree staging area;
502 # the rest are taken from the original source tree.
503 gxx_include_dir = @gxx_include_dir@
504 install-data-local:
505         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}
506         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${bits_builddir}
507         for file in ${bits_headers}; do \
508           $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${bits_builddir}; done
509         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${backward_builddir}
510         for file in ${backward_headers}; do \
511           $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${backward_builddir}; done
512         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${ext_builddir}
513         for file in ${ext_headers}; do \
514           $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${ext_builddir}; done
515         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${c_base_builddir}
516         for file in ${c_base_headers_rename}; do \
517           $(INSTALL_DATA) ${c_base_builddir}/$${file} $(DESTDIR)${gxx_include_dir}/${c_base_builddir}; done
518         c_base_headers_extra_install='$(c_base_headers_extra)';\
519         for file in $$c_base_headers_extra_install; do \
520           $(INSTALL_DATA) $$file $(DESTDIR)${gxx_include_dir}/${bits_builddir}; done
521         c_compatibility_headers_install='$(c_compatibility_headers_extra)';\
522         for file in $$c_compatibility_headers_install; do \
523           $(INSTALL_DATA) $$file $(DESTDIR)${gxx_include_dir}; done
524         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${std_builddir}
525         for file in ${std_headers_rename}; do \
526           $(INSTALL_DATA) ${std_builddir}/$${file} $(DESTDIR)${gxx_include_dir}/${std_builddir}; done
527         $(mkinstalldirs) $(DESTDIR)${gxx_include_dir}/${target_builddir}
528         for file in ${target_headers} ${target_headers_extra} \
529          ${thread_target_headers}; do \
530           $(INSTALL_DATA) $${file} $(DESTDIR)${gxx_include_dir}/${target_builddir}; done
531
532 # By adding these files here, automake will remove them for 'make clean'
533 CLEANFILES = *.gch stamp-stdc++-precompile
534
535 # Stop implicit '.o' make rules from ever stomping on extensionless
536 # headers, in the improbable case where some foolish, crack-addled
537 # developer tries to create them via make in the include build
538 # directory. (This is more of an example of how this kind of rule can
539 # be made.)
540 .PRECIOUS: $(std_headers_rename) $(c_base_headers_rename)
541 $(std_headers_rename): ; @:
542 $(c_base_headers_rename): ; @: