OSDN Git Service

2008-04-10 Benjamin Kosnik <bkoz@redhat.com>
[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, 2005
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
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         date_time.cc \
146         debug.cc \
147         functexcept.cc \
148         hash.cc \
149         hash_c++0x.cc \
150         globals_io.cc \
151         hashtable.cc \
152         hashtable_c++0x.cc \
153         ios.cc \
154         ios_failure.cc \
155         ios_init.cc \
156         ios_locale.cc \
157         limits.cc \
158         list.cc \
159         debug_list.cc \
160         locale.cc \
161         locale_init.cc \
162         locale_facets.cc \
163         localename.cc \
164         stdexcept.cc \
165         strstream.cc \
166         system_error.cc \
167         tree.cc \
168         allocator-inst.cc \
169         concept-inst.cc \
170         fstream-inst.cc \
171         ext-inst.cc \
172         ios-inst.cc \
173         iostream-inst.cc \
174         istream-inst.cc \
175         istream.cc \
176         locale-inst.cc \
177         misc-inst.cc \
178         ostream-inst.cc \
179         sstream-inst.cc \
180         streambuf-inst.cc \
181         streambuf.cc \
182         string-inst.cc \
183         valarray-inst.cc \
184         wlocale-inst.cc \
185         wstring-inst.cc \
186         ${host_sources} \
187         ${host_sources_extra} 
188
189 vpath % $(top_srcdir)/src
190 vpath % $(top_srcdir)
191
192 libstdc___la_SOURCES = $(sources)
193
194 libstdc___la_LIBADD = \
195         $(top_builddir)/libmath/libmath.la \
196         $(top_builddir)/libsupc++/libsupc++convenience.la
197
198 libstdc___la_DEPENDENCIES = ${version_dep} $(libstdc___la_LIBADD)
199
200 libstdc___la_LDFLAGS = \
201         -version-info $(libtool_VERSION) ${version_arg} -lm 
202
203 # Use special rules for the deprecated source files so that they find
204 # deprecated include files.
205 GLIBCXX_INCLUDE_DIR=$(glibcxx_builddir)/include
206 strstream.lo: strstream.cc
207         $(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
208 strstream.o: strstream.cc
209         $(CXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
210
211 # Use special rules for the concept-checking instantiations so that all
212 # the generated template functions are also instantiated.  Force the checks
213 # to be on so that the instantiations are actually seen.
214 concept-inst.lo: concept-inst.cc
215         $(LTCXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
216 concept-inst.o: concept-inst.cc
217         $(CXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
218
219 # Use special rules for parallel mode compilation.
220 PARALLEL_FLAGS = -fopenmp -D_GLIBCXX_PARALLEL -I$(glibcxx_builddir)/../libgomp
221 parallel_list.lo: parallel_list.cc
222         $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
223 parallel_list.o: parallel_list.cc
224         $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
225
226 parallel_settings.lo: parallel_settings.cc
227         $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
228 parallel_settings.o: parallel_settings.cc
229         $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
230
231 # Use special rules for the C++0x sources so that the proper flags are passed.
232 system_error.lo: system_error.cc
233         $(LTCXXCOMPILE) -std=gnu++0x -c $<
234 system_error.o: system_error.cc
235         $(CXXCOMPILE) -std=gnu++0x -c $<
236
237 hash_c++0x.lo: hash_c++0x.cc
238         $(LTCXXCOMPILE) -std=gnu++0x -c $<
239 hash_c++0x.o: hash_c++0x.cc
240         $(CXXCOMPILE) -std=gnu++0x -c $<
241
242 hashtable_c++0x.lo: hashtable_c++0x.cc
243         $(LTCXXCOMPILE) -std=gnu++0x -c $<
244 hashtable_c++0x.o: hashtable_c++0x.cc
245         $(CXXCOMPILE) -std=gnu++0x -c $<
246
247 date_time.lo: date_time.cc
248         $(LTCXXCOMPILE) -std=gnu++0x -c $<
249 date_time.o: date_time.cc
250         $(CXXCOMPILE) -std=gnu++0x -c $<
251
252 atomic.lo: atomic.cc
253         $(LTCXXCOMPILE) -x c++ -std=gnu++0x -c $<
254 atomic.o: atomic.cc
255         $(CXXCOMPILE) -x c++ -std=gnu++0x -c $<
256
257 if GLIBCXX_LDBL_COMPAT
258 # Use special rules for compatibility-ldbl.cc compilation, as we need to
259 # pass -mlong-double-64.
260 compatibility-ldbl.lo: compatibility-ldbl.cc
261         $(LTCXXCOMPILE) -mlong-double-64 -c $<
262 compatibility-ldbl.o: compatibility-ldbl.cc
263         $(CXXCOMPILE) -mlong-double-64 -c $<
264 endif
265
266 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
267 # modified in a per-library or per-sub-library way.  Need to manually
268 # set this option because CONFIG_CXXFLAGS has to be after
269 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
270 # as the occasion calls for it.
271 AM_CXXFLAGS = \
272         -fno-implicit-templates \
273         $(WARN_CXXFLAGS) \
274         $(OPTIMIZE_CXXFLAGS) \
275         $(CONFIG_CXXFLAGS)
276
277
278 # libstdc++ libtool notes
279
280 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
281 # last. (That way, things like -O2 passed down from the toplevel can
282 # be overridden by --enable-debug.)
283
284 # 2) In general, libtool expects an argument such as `--tag=CXX' when
285 # using the C++ compiler, because that will enable the settings
286 # detected when C++ support was being configured.  However, when no
287 # such flag is given in the command line, libtool attempts to figure
288 # it out by matching the compiler name in each configuration section
289 # against a prefix of the command line.  The problem is that, if the
290 # compiler name and its initial flags stored in the libtool
291 # configuration file don't match those in the command line, libtool
292 # can't decide which configuration to use, and it gives up.  The
293 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
294 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
295 # attempt to infer which configuration to use
296 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --mode=compile $(CXX) $(INCLUDES) \
297                $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) 
298
299 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
300
301 # 3) We'd have a problem when building the shared libstdc++ object if
302 # the rules automake generates would be used.  We cannot allow g++ to
303 # be used since this would add -lstdc++ to the link line which of
304 # course is problematic at this point.  So, we get the top-level
305 # directory to configure libstdc++-v3 to use gcc as the C++
306 # compilation driver.
307 CXXLINK = $(LIBTOOL) --tag CXX --mode=link $(CXX) \
308           $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
309
310
311 # Added bits to build debug library.
312 if GLIBCXX_BUILD_DEBUG
313 all-local: build_debug
314 install-data-local: install_debug
315 else
316 all-local:
317 install-data-local:
318 endif
319
320 debugdir = debug
321
322 # Build a set of debug objects here.
323 stamp-debug:
324         if test ! -d ${debugdir}; then \
325           mkdir -p ${debugdir}; \
326           (cd ${debugdir}; \
327           sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \
328               -e 's/srcdir = \.\./srcdir = ..\/../' \
329               -e 's/glibcxx_basedir = \.\./glibcxx_basedir = ..\/../' \
330               -e 's/all-local: build_debug/all-local:/' \
331               -e 's/install-data-local: install_debug/install-data-local:/' \
332           < ../Makefile > Makefile) ; \
333         fi; \
334         echo `date` > stamp-debug;
335
336 build_debug: stamp-debug
337         (cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' all)
338
339 # Install debug library here.
340 install_debug:
341         (cd ${debugdir} && $(MAKE) \
342         toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install)