OSDN Git Service

* id.po: Update.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / src / Makefile.am
1 ## Makefile for the src subdirectory of the GNU C++ Standard library.
2 ##
3 ## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
4 ## 2006, 2007, 2008, 2009
5 ## Free Software Foundation, Inc.
6 ##
7 ## This file is part of the libstdc++ version 3 distribution.
8 ## Process this file with automake to produce Makefile.in.
9
10 ## This file is part of the GNU ISO C++ Library.  This library is free
11 ## software; you can redistribute it and/or modify it under the
12 ## terms of the GNU General Public License as published by the
13 ## Free Software Foundation; either version 3, or (at your option)
14 ## any later version.
15
16 ## This library is distributed in the hope that it will be useful,
17 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 ## GNU General Public License for more details.
20
21 ## You should have received a copy of the GNU General Public License along
22 ## with this library; see the file COPYING3.  If not see
23 ## <http://www.gnu.org/licenses/>.
24
25 include $(top_srcdir)/fragment.am
26
27 # Cross compiler support.
28 toolexeclib_LTLIBRARIES = libstdc++.la
29
30 # Symbol versioning for shared libraries.
31 if ENABLE_SYMVERS
32 libstdc++-symbols.ver:  ${glibcxx_srcdir}/$(SYMVER_FILE) \
33                 $(port_specific_symbol_files)
34         cp ${glibcxx_srcdir}/$(SYMVER_FILE) ./libstdc++-symbols.ver
35         chmod +w ./libstdc++-symbols.ver
36         if test "x$(port_specific_symbol_files)" != x; then \
37           if grep '^# Appended to version file.' \
38                $(port_specific_symbol_files) /dev/null > /dev/null 2>&1; then \
39             cat $(port_specific_symbol_files) >> $@; \
40           else \
41             sed -n '1,/DO NOT DELETE/p' $@ > tmp.top; \
42             sed -n '/DO NOT DELETE/,$$p' $@ > tmp.bottom; \
43             cat tmp.top $(port_specific_symbol_files) tmp.bottom > $@; \
44             rm tmp.top tmp.bottom; \
45           fi; \
46         fi
47
48 if ENABLE_SYMVERS_GNU
49 version_arg = -Wl,--version-script=libstdc++-symbols.ver
50 version_dep = libstdc++-symbols.ver
51 endif
52 if ENABLE_SYMVERS_GNU_NAMESPACE
53 version_arg = -Wl,--version-script=libstdc++-symbols.ver
54 version_dep = libstdc++-symbols.ver
55 endif
56 if ENABLE_SYMVERS_DARWIN
57 version_arg = -Wl,-exported_symbols_list,libstdc++-symbols.explist
58 version_dep = libstdc++-symbols.explist
59 libstdc++-symbols.explist : libstdc++-symbols.ver \
60                 ${glibcxx_srcdir}/scripts/make_exports.pl \
61                 $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD)
62         perl ${glibcxx_srcdir}/scripts/make_exports.pl \
63           libstdc++-symbols.ver \
64           $(libstdc___la_OBJECTS:%.lo=.libs/%.o) \
65          `echo $(libstdc___la_LIBADD) | \
66             sed 's,/\([^/.]*\)\.la,/.libs/\1.a,g'` \
67          > $@ || (rm -f $@ ; exit 1)
68 endif
69 else
70 version_arg =
71 version_dep =
72 endif
73
74
75 # Source files linked in via configuration/make substitution for a
76 # particular host.
77 host_sources = \
78         atomicity.cc \
79         codecvt_members.cc \
80         collate_members.cc \
81         ctype_members.cc \
82         messages_members.cc \
83         monetary_members.cc \
84         numeric_members.cc \
85         time_members.cc 
86
87 codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC)
88         $(LN_S) ${glibcxx_srcdir}/$(CCODECVT_CC) . || true
89
90 collate_members.cc: ${glibcxx_srcdir}/$(CCOLLATE_CC)
91         $(LN_S) ${glibcxx_srcdir}/$(CCOLLATE_CC) . || true
92
93 ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
94         $(LN_S) ${glibcxx_srcdir}/$(CCTYPE_CC) . || true
95
96 messages_members.cc: ${glibcxx_srcdir}/$(CMESSAGES_CC)
97         $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_CC) . || true
98
99 monetary_members.cc: ${glibcxx_srcdir}/$(CMONEY_CC)
100         $(LN_S) ${glibcxx_srcdir}/$(CMONEY_CC) . || true
101
102 numeric_members.cc: ${glibcxx_srcdir}/$(CNUMERIC_CC)
103         $(LN_S) ${glibcxx_srcdir}/$(CNUMERIC_CC) . || true
104
105 time_members.cc: ${glibcxx_srcdir}/$(CTIME_CC)
106         $(LN_S) ${glibcxx_srcdir}/$(CTIME_CC) . || true
107
108 atomicity_file = ${glibcxx_srcdir}/$(ATOMICITY_SRCDIR)/atomicity.h
109 atomicity.cc: ${atomicity_file}
110         $(LN_S) ${atomicity_file} ./atomicity.cc || true
111
112 # Source files linked in via configuration/make substitution for a
113 # particular host, but with ad hoc naming rules.
114 host_sources_extra = \
115         basic_file.cc c++locale.cc ${ldbl_compat_sources} ${parallel_sources}
116
117 c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC)
118         $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_CC) ./$@ || true
119
120 basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
121         $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
122
123 if ENABLE_PARALLEL
124 parallel_sources = parallel_list.cc parallel_settings.cc
125 else
126 parallel_sources =
127 endif
128
129 if GLIBCXX_LDBL_COMPAT
130 ldbl_compat_sources = compatibility-ldbl.cc
131 else
132 ldbl_compat_sources =
133 endif
134
135 # Sources present in the src directory.
136 sources = \
137         atomic.cc \
138         bitmap_allocator.cc \
139         pool_allocator.cc \
140         mt_allocator.cc \
141         codecvt.cc \
142         compatibility.cc \
143         complex_io.cc \
144         ctype.cc \
145         debug.cc \
146         functexcept.cc \
147         hash_tr1.cc \
148         hash_c++0x.cc \
149         globals_io.cc \
150         hashtable_tr1.cc \
151         hashtable_c++0x.cc \
152         ios.cc \
153         ios_failure.cc \
154         ios_init.cc \
155         ios_locale.cc \
156         limits.cc \
157         limits_c++0x.cc \
158         list.cc \
159         debug_list.cc \
160         locale.cc \
161         locale_init.cc \
162         locale_facets.cc \
163         localename.cc \
164         math_stubs_float.cc \
165         math_stubs_long_double.cc \
166         stdexcept.cc \
167         strstream.cc \
168         system_error.cc \
169         tree.cc \
170         allocator-inst.cc \
171         concept-inst.cc \
172         fstream-inst.cc \
173         ext-inst.cc \
174         ios-inst.cc \
175         iostream-inst.cc \
176         istream-inst.cc \
177         istream.cc \
178         locale-inst.cc \
179         misc-inst.cc \
180         ostream-inst.cc \
181         sstream-inst.cc \
182         streambuf-inst.cc \
183         streambuf.cc \
184         string-inst.cc \
185         valarray-inst.cc \
186         wlocale-inst.cc \
187         wstring-inst.cc \
188         mutex.cc \
189         condition_variable.cc \
190         chrono.cc \
191         thread.cc \
192         future.cc \
193         ${host_sources} \
194         ${host_sources_extra} 
195
196 vpath % $(top_srcdir)/src
197 vpath % $(top_srcdir)
198
199 libstdc___la_SOURCES = $(sources)
200
201 libstdc___la_LIBADD = \
202         $(GLIBCXX_LIBS) \
203         $(top_builddir)/libsupc++/libsupc++convenience.la
204
205 libstdc___la_DEPENDENCIES = \
206         ${version_dep} \
207         $(top_builddir)/libsupc++/libsupc++convenience.la
208
209 libstdc___la_LDFLAGS = \
210         -version-info $(libtool_VERSION) ${version_arg} -lm 
211
212 libstdc___la_LINK = $(CXXLINK) $(libstdc___la_LDFLAGS)
213
214 # Use special rules for the deprecated source files so that they find
215 # deprecated include files.
216 GLIBCXX_INCLUDE_DIR=$(glibcxx_builddir)/include
217 strstream.lo: strstream.cc
218         $(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
219 strstream.o: strstream.cc
220         $(CXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
221
222 # Use special rules for the concept-checking instantiations so that all
223 # the generated template functions are also instantiated.  Force the checks
224 # to be on so that the instantiations are actually seen.
225 concept-inst.lo: concept-inst.cc
226         $(LTCXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
227 concept-inst.o: concept-inst.cc
228         $(CXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
229
230 # Use special rules for parallel mode compilation.
231 PARALLEL_FLAGS = -fopenmp -D_GLIBCXX_PARALLEL -I$(glibcxx_builddir)/../libgomp
232 parallel_list.lo: parallel_list.cc
233         $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
234 parallel_list.o: parallel_list.cc
235         $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
236
237 parallel_settings.lo: parallel_settings.cc
238         $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
239 parallel_settings.o: parallel_settings.cc
240         $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
241
242 # Use special rules for the C++0x sources so that the proper flags are passed.
243 functexcept.lo: functexcept.cc
244         $(LTCXXCOMPILE) -std=gnu++0x -c $<
245 functexcept.o: functexcept.cc
246         $(CXXCOMPILE) -std=gnu++0x -c $<
247
248 system_error.lo: system_error.cc
249         $(LTCXXCOMPILE) -std=gnu++0x -c $<
250 system_error.o: system_error.cc
251         $(CXXCOMPILE) -std=gnu++0x -c $<
252
253 mutex.lo: mutex.cc
254         $(LTCXXCOMPILE) -std=gnu++0x -c $<
255 mutex.o: mutex.cc
256         $(CXXCOMPILE) -std=gnu++0x -c $<
257
258 condition_variable.lo: condition_variable.cc
259         $(LTCXXCOMPILE) -std=gnu++0x -c $<
260 condition_variable.o: condition_variable.cc
261         $(CXXCOMPILE) -std=gnu++0x -c $<
262
263 hash_c++0x.lo: hash_c++0x.cc
264         $(LTCXXCOMPILE) -std=gnu++0x -c $<
265 hash_c++0x.o: hash_c++0x.cc
266         $(CXXCOMPILE) -std=gnu++0x -c $<
267
268 hashtable_c++0x.lo: hashtable_c++0x.cc
269         $(LTCXXCOMPILE) -std=gnu++0x -c $<
270 hashtable_c++0x.o: hashtable_c++0x.cc
271         $(CXXCOMPILE) -std=gnu++0x -c $<
272
273 limits_c++0x.lo: limits_c++0x.cc
274         $(LTCXXCOMPILE) -std=gnu++0x -c $<
275 limits_c++0x.o: limits_c++0x.cc
276         $(CXXCOMPILE) -std=gnu++0x -c $<
277
278 atomic.lo: atomic.cc
279         $(LTCXXCOMPILE) -std=gnu++0x -c $<
280 atomic.o: atomic.cc
281         $(CXXCOMPILE) -std=gnu++0x -c $<
282
283 fstream-inst.lo: fstream-inst.cc
284         $(LTCXXCOMPILE) -std=gnu++0x -c $<
285 fstream-inst.o: fstream-inst.cc
286         $(CXXCOMPILE) -std=gnu++0x -c $<
287
288 string-inst.lo: string-inst.cc
289         $(LTCXXCOMPILE) -std=gnu++0x -c $<
290 string-inst.o: string-inst.cc
291         $(CXXCOMPILE) -std=gnu++0x -c $<
292
293 wstring-inst.lo: wstring-inst.cc
294         $(LTCXXCOMPILE) -std=gnu++0x -c $<
295 wstring-inst.o: wstring-inst.cc
296         $(CXXCOMPILE) -std=gnu++0x -c $<
297
298 chrono.lo: chrono.cc
299         $(LTCXXCOMPILE) -std=gnu++0x -c $<
300 chrono.o: chrono.cc
301         $(CXXCOMPILE) -std=gnu++0x -c $<
302
303 thread.lo: thread.cc
304         $(LTCXXCOMPILE) -std=gnu++0x -c $<
305 thread.o: thread.cc
306         $(CXXCOMPILE) -std=gnu++0x -c $<
307
308 future.lo: future.cc
309         $(LTCXXCOMPILE) -std=gnu++0x -c $<
310 future.o: future.cc
311         $(CXXCOMPILE) -std=gnu++0x -c $<
312
313 if GLIBCXX_LDBL_COMPAT
314 # Use special rules for compatibility-ldbl.cc compilation, as we need to
315 # pass -mlong-double-64.
316 compatibility-ldbl.lo: compatibility-ldbl.cc
317         $(LTCXXCOMPILE) -mlong-double-64 -c $<
318 compatibility-ldbl.o: compatibility-ldbl.cc
319         $(CXXCOMPILE) -mlong-double-64 -c $<
320 endif
321
322 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
323 # modified in a per-library or per-sub-library way.  Need to manually
324 # set this option because CONFIG_CXXFLAGS has to be after
325 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
326 # as the occasion calls for it.
327 AM_CXXFLAGS = \
328         -fno-implicit-templates \
329         $(WARN_CXXFLAGS) \
330         $(OPTIMIZE_CXXFLAGS) \
331         $(CONFIG_CXXFLAGS)
332
333
334 # libstdc++ libtool notes
335
336 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
337 # last. (That way, things like -O2 passed down from the toplevel can
338 # be overridden by --enable-debug.)
339
340 # 2) In general, libtool expects an argument such as `--tag=CXX' when
341 # using the C++ compiler, because that will enable the settings
342 # detected when C++ support was being configured.  However, when no
343 # such flag is given in the command line, libtool attempts to figure
344 # it out by matching the compiler name in each configuration section
345 # against a prefix of the command line.  The problem is that, if the
346 # compiler name and its initial flags stored in the libtool
347 # configuration file don't match those in the command line, libtool
348 # can't decide which configuration to use, and it gives up.  The
349 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
350 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
351 # attempt to infer which configuration to use
352 LTCXXCOMPILE = $(LIBTOOL) --tag CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
353                $(CXX) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
354
355 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
356
357 # 3) We'd have a problem when building the shared libstdc++ object if
358 # the rules automake generates would be used.  We cannot allow g++ to
359 # be used since this would add -lstdc++ to the link line which of
360 # course is problematic at this point.  So, we get the top-level
361 # directory to configure libstdc++-v3 to use gcc as the C++
362 # compilation driver.
363 CXXLINK = $(LIBTOOL) --tag CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
364           $(CXX) $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
365
366
367 # Added bits to build debug library.
368 if GLIBCXX_BUILD_DEBUG
369 all-local: build_debug
370 install-data-local: install_debug
371 else
372 all-local:
373 install-data-local:
374 endif
375
376 debugdir = debug
377
378 # Build a set of debug objects here.
379 stamp-debug:
380         if test ! -d ${debugdir}; then \
381           mkdir -p ${debugdir}; \
382           (cd ${debugdir}; \
383           sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \
384               -e 's/srcdir = \.\./srcdir = ..\/../' \
385               -e 's/glibcxx_basedir = \.\./glibcxx_basedir = ..\/../' \
386               -e 's/all-local: build_debug/all-local:/' \
387               -e 's/install-data-local: install_debug/install-data-local:/' \
388           < ../Makefile > Makefile) ; \
389         fi; \
390         echo `date` > stamp-debug;
391
392 build_debug: stamp-debug
393         (cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' all)
394
395 # Install debug library here.
396 install_debug:
397         (cd ${debugdir} && $(MAKE) \
398         toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install)