OSDN Git Service

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