OSDN Git Service

973e75ff157d5979aa1e4b512c6c58123d297b4e
[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         if test "x$(port_specific_symbol_files)" != x; then \
36           sed -n '1,/DO NOT DELETE/p' $@ > tmp.top; \
37           sed -n '/DO NOT DELETE/,$$p' $@ > tmp.bottom; \
38           cat tmp.top $(port_specific_symbol_files) tmp.bottom > $@; \
39           rm tmp.top tmp.bottom; \
40         fi
41
42 if ENABLE_SYMVERS_GNU
43 version_arg = -Wl,--version-script=libstdc++-symbols.ver
44 version_dep = libstdc++-symbols.ver
45 endif
46 if ENABLE_SYMVERS_GNU_NAMESPACE
47 version_arg = -Wl,--version-script=libstdc++-symbols.ver
48 version_dep = libstdc++-symbols.ver
49 endif
50 if ENABLE_SYMVERS_DARWIN
51 version_arg = -Wl,-exported_symbols_list,libstdc++-symbols.explist
52 version_dep = libstdc++-symbols.explist
53 libstdc++-symbols.explist : libstdc++-symbols.ver \
54                 ${glibcxx_srcdir}/scripts/make_exports.pl \
55                 $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD)
56         perl ${glibcxx_srcdir}/scripts/make_exports.pl \
57           libstdc++-symbols.ver \
58           $(libstdc___la_OBJECTS:%.lo=.libs/%.o) \
59          `echo $(libstdc___la_LIBADD) | \
60             sed 's,/\([^/.]*\)\.la,/.libs/\1.a,g'` \
61          > $@ || (rm -f $@ ; exit 1)
62 endif
63 else
64 version_arg =
65 version_dep =
66 endif
67
68
69 # Source files linked in via configuration/make substitution for a
70 # particular host.
71 host_sources = \
72         atomicity.cc \
73         codecvt_members.cc \
74         collate_members.cc \
75         ctype_members.cc \
76         messages_members.cc \
77         monetary_members.cc \
78         numeric_members.cc \
79         time_members.cc 
80
81 codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC)
82         $(LN_S) ${glibcxx_srcdir}/$(CCODECVT_CC) . || true
83
84 collate_members.cc: ${glibcxx_srcdir}/$(CCOLLATE_CC)
85         $(LN_S) ${glibcxx_srcdir}/$(CCOLLATE_CC) . || true
86
87 ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
88         $(LN_S) ${glibcxx_srcdir}/$(CCTYPE_CC) . || true
89
90 messages_members.cc: ${glibcxx_srcdir}/$(CMESSAGES_CC)
91         $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_CC) . || true
92
93 monetary_members.cc: ${glibcxx_srcdir}/$(CMONEY_CC)
94         $(LN_S) ${glibcxx_srcdir}/$(CMONEY_CC) . || true
95
96 numeric_members.cc: ${glibcxx_srcdir}/$(CNUMERIC_CC)
97         $(LN_S) ${glibcxx_srcdir}/$(CNUMERIC_CC) . || true
98
99 time_members.cc: ${glibcxx_srcdir}/$(CTIME_CC)
100         $(LN_S) ${glibcxx_srcdir}/$(CTIME_CC) . || true
101
102 atomicity_file = ${glibcxx_srcdir}/$(ATOMICITY_SRCDIR)/atomicity.h
103 atomicity.cc: ${atomicity_file}
104         $(LN_S) ${atomicity_file} ./atomicity.cc || true
105
106 # Source files linked in via configuration/make substitution for a
107 # particular host, but with ad hoc naming rules.
108 host_sources_extra = \
109         basic_file.cc \
110         c++locale.cc
111
112 c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC)
113         $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_CC) ./$@ || true
114
115 basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
116         $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
117
118 # Sources present in the src directory.
119 sources = \
120         bitmap_allocator.cc \
121         pool_allocator.cc \
122         mt_allocator.cc \
123         codecvt.cc \
124         compatibility.cc \
125         complex_io.cc \
126         ctype.cc \
127         debug.cc \
128         debug_list.cc \
129         functexcept.cc \
130         globals_locale.cc \
131         globals_io.cc \
132         ios.cc \
133         ios_failure.cc \
134         ios_init.cc \
135         ios_locale.cc \
136         limits.cc \
137         list.cc \
138         locale.cc \
139         locale_init.cc \
140         locale_facets.cc \
141         localename.cc \
142         stdexcept.cc \
143         strstream.cc \
144         tree.cc \
145         allocator-inst.cc \
146         concept-inst.cc \
147         fstream-inst.cc \
148         ext-inst.cc \
149         ios-inst.cc \
150         iostream-inst.cc \
151         istream-inst.cc \
152         istream.cc \
153         locale-inst.cc \
154         locale-misc-inst.cc \
155         misc-inst.cc \
156         ostream-inst.cc \
157         sstream-inst.cc \
158         streambuf-inst.cc \
159         streambuf.cc \
160         string-inst.cc \
161         valarray-inst.cc \
162         wlocale-inst.cc \
163         wstring-inst.cc \
164         ${host_sources} \
165         ${host_sources_extra}
166
167 VPATH = $(top_srcdir)/src:$(top_srcdir)
168
169 libstdc___la_SOURCES = $(sources)
170
171 libstdc___la_LIBADD = \
172         $(top_builddir)/libmath/libmath.la \
173         $(top_builddir)/libsupc++/libsupc++convenience.la
174
175 libstdc___la_DEPENDENCIES = ${version_dep} $(libstdc___la_LIBADD)
176
177 libstdc___la_LDFLAGS = \
178         -version-info $(libtool_VERSION) ${version_arg} -lm 
179
180 # Use special rules for the deprecated source files so that they find
181 # deprecated include files.
182 GLIBCXX_INCLUDE_DIR=$(glibcxx_builddir)/include
183 strstream.lo: strstream.cc
184         $(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
185 strstream.o: strstream.cc
186         $(CXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
187
188 # Use special rules for the concept-checking instantiations so that all
189 # the generated template functions are also instantiated.  Force the checks
190 # to be on so that the instantiations are actually seen.
191 concept-inst.lo: concept-inst.cc
192         $(LTCXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
193 concept-inst.o: concept-inst.cc
194         $(CXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
195
196 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
197 # modified in a per-library or per-sub-library way.  Need to manually
198 # set this option because CONFIG_CXXFLAGS has to be after
199 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
200 # as the occasion calls for it.
201 AM_CXXFLAGS = \
202         -fno-implicit-templates \
203         $(WARN_CXXFLAGS) \
204         $(OPTIMIZE_CXXFLAGS) \
205         $(CONFIG_CXXFLAGS)
206
207
208 # libstdc++ libtool notes
209
210 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
211 # last. (That way, things like -O2 passed down from the toplevel can
212 # be overridden by --enable-debug.)
213
214 # 2) In general, libtool expects an argument such as `--tag=CXX' when
215 # using the C++ compiler, because that will enable the settings
216 # detected when C++ support was being configured.  However, when no
217 # such flag is given in the command line, libtool attempts to figure
218 # it out by matching the compiler name in each configuration section
219 # against a prefix of the command line.  The problem is that, if the
220 # compiler name and its initial flags stored in the libtool
221 # configuration file don't match those in the command line, libtool
222 # can't decide which configuration to use, and it gives up.  The
223 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
224 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
225 # attempt to infer which configuration to use
226 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --mode=compile $(CXX) $(INCLUDES) \
227                $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) 
228
229 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
230
231 # 3) We'd have a problem when building the shared libstdc++ object if
232 # the rules automake generates would be used.  We cannot allow g++ to
233 # be used since this would add -lstdc++ to the link line which of
234 # course is problematic at this point.  So, we get the top-level
235 # directory to configure libstdc++-v3 to use gcc as the C++
236 # compilation driver.
237 CXXLINK = $(LIBTOOL) --tag CXX --mode=link $(CXX) \
238           $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
239
240
241 # Added bits to build debug library.
242 if GLIBCXX_BUILD_DEBUG
243 all-local: build_debug
244 install-data-local: install_debug
245 else
246 all-local:
247 install-data-local:
248 endif
249
250 debugdir = debug
251
252 # Build parallel set of debug objects here.
253 stamp-debug:
254         if test ! -d ${debugdir}; then \
255           mkdir -p ${debugdir}; \
256           (cd ${debugdir}; \
257           sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \
258               -e 's/srcdir = \.\./srcdir = ..\/../' \
259               -e 's/glibcxx_basedir = \.\./glibcxx_basedir = ..\/../' \
260               -e 's/all-local: build_debug/all-local:/' \
261               -e 's/install-data-local: install_debug/install-data-local:/' \
262           < ../Makefile > Makefile) ; \
263         fi; \
264         echo `date` > stamp-debug;
265
266 build_debug: stamp-debug
267         (cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' all)
268
269 # Install debug library here.
270 install_debug:
271         (cd ${debugdir} && $(MAKE) \
272         toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install)