Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / libstdc++-v3 / src / Makefile.am
blob630f4dcd6d0e75118eb653de282dd04fa573f699
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.
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.
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.
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.
25 include $(top_srcdir)/fragment.am
27 # Cross compiler support.
28 toolexeclib_LTLIBRARIES = libstdc++.la
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
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 
60 codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC)
61         $(LN_S) ${glibcxx_srcdir}/$(CCODECVT_CC) . || true
63 collate_members.cc: ${glibcxx_srcdir}/$(CCOLLATE_CC)
64         $(LN_S) ${glibcxx_srcdir}/$(CCOLLATE_CC) . || true
66 ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
67         $(LN_S) ${glibcxx_srcdir}/$(CCTYPE_CC) . || true
69 messages_members.cc: ${glibcxx_srcdir}/$(CMESSAGES_CC)
70         $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_CC) . || true
72 monetary_members.cc: ${glibcxx_srcdir}/$(CMONEY_CC)
73         $(LN_S) ${glibcxx_srcdir}/$(CMONEY_CC) . || true
75 numeric_members.cc: ${glibcxx_srcdir}/$(CNUMERIC_CC)
76         $(LN_S) ${glibcxx_srcdir}/$(CNUMERIC_CC) . || true
78 time_members.cc: ${glibcxx_srcdir}/$(CTIME_CC)
79         $(LN_S) ${glibcxx_srcdir}/$(CTIME_CC) . || true
81 atomicity_file = ${glibcxx_srcdir}/$(ATOMICITY_SRCDIR)/atomicity.h
82 atomicity.cc: ${atomicity_file}
83         $(LN_S) ${atomicity_file} ./atomicity.cc || true
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
91 c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC)
92         $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_CC) ./$@ || true
94 basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
95         $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
97 # Sources present in the src directory.
98 sources = \
99         bitmap_allocator.cc \
100         pool_allocator.cc \
101         mt_allocator.cc \
102         codecvt.cc \
103         complex_io.cc \
104         ctype.cc \
105         debug.cc \
106         debug_list.cc \
107         functexcept.cc \
108         globals_locale.cc \
109         globals_io.cc \
110         ios.cc \
111         ios_failure.cc \
112         ios_init.cc \
113         ios_locale.cc \
114         limits.cc \
115         list.cc \
116         locale.cc \
117         locale_init.cc \
118         locale_facets.cc \
119         localename.cc \
120         stdexcept.cc \
121         strstream.cc \
122         tree.cc \
123         allocator-inst.cc \
124         concept-inst.cc \
125         fstream-inst.cc \
126         ext-inst.cc \
127         io-inst.cc \
128         istream-inst.cc \
129         istream.cc \
130         locale-inst.cc \
131         locale-misc-inst.cc \
132         misc-inst.cc \
133         ostream-inst.cc \
134         sstream-inst.cc \
135         streambuf-inst.cc \
136         streambuf.cc \
137         string-inst.cc \
138         valarray-inst.cc \
139         wlocale-inst.cc \
140         wstring-inst.cc \
141         ${host_sources} \
142         ${host_sources_extra}
144 VPATH = $(top_srcdir)/src:$(top_srcdir)
146 libstdc___la_SOURCES = $(sources)
148 libstdc___la_LIBADD = \
149         $(top_builddir)/libmath/libmath.la \
150         $(top_builddir)/libsupc++/libsupc++convenience.la
152 libstdc___la_DEPENDENCIES = ${version_dep} $(libstdc___la_LIBADD)
154 libstdc___la_LDFLAGS = \
155         -version-info $(libtool_VERSION) ${version_arg} -lm 
158 # Use special rules for the deprecated source files so that they find
159 # deprecated include files.
160 GLIBCXX_INCLUDE_DIR=$(glibcxx_builddir)/include
161 strstream.lo: strstream.cc
162         $(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
163 strstream.o: strstream.cc
164         $(CXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
166 # Use special rules for the concept-checking instantiations so that all
167 # the generated template functions are also instantiated.  Force the checks
168 # to be on so that the instantiations are actually seen.
169 concept-inst.lo: concept-inst.cc
170         $(LTCXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
171 concept-inst.o: concept-inst.cc
172         $(CXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
174 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
175 # modified in a per-library or per-sub-library way.  Need to manually
176 # set this option because CONFIG_CXXFLAGS has to be after
177 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
178 # as the occasion calls for it.
179 AM_CXXFLAGS = \
180         -fno-implicit-templates \
181         $(WARN_CXXFLAGS) \
182         $(OPTIMIZE_CXXFLAGS) \
183         $(CONFIG_CXXFLAGS)
186 # libstdc++ libtool notes
188 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
189 # last. (That way, things like -O2 passed down from the toplevel can
190 # be overridden by --enable-debug.)
192 # 2) In general, libtool expects an argument such as `--tag=CXX' when
193 # using the C++ compiler, because that will enable the settings
194 # detected when C++ support was being configured.  However, when no
195 # such flag is given in the command line, libtool attempts to figure
196 # it out by matching the compiler name in each configuration section
197 # against a prefix of the command line.  The problem is that, if the
198 # compiler name and its initial flags stored in the libtool
199 # configuration file don't match those in the command line, libtool
200 # can't decide which configuration to use, and it gives up.  The
201 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
202 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
203 # attempt to infer which configuration to use
204 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --mode=compile $(CXX) $(INCLUDES) \
205                $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS)
207 # 3) We'd have a problem when building the shared libstdc++ object if
208 # the rules automake generates would be used.  We cannot allow g++ to
209 # be used since this would add -lstdc++ to the link line which of
210 # course is problematic at this point.  So, we get the top-level
211 # directory to configure libstdc++-v3 to use gcc as the C++
212 # compilation driver.
213 CXXLINK = $(LIBTOOL) --tag CXX --mode=link $(CXX) \
214           $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LDFLAGS) -o $@
217 # Added bits to build debug library.
218 if GLIBCXX_BUILD_DEBUG
219 all-local: build_debug
220 install-data-local: install_debug
221 else
222 all-local:
223 install-data-local:
224 endif
226 debugdir = debug
228 # Build parallel set of debug objects here.
229 stamp-debug:
230         if test ! -d ${debugdir}; then \
231           mkdir -p ${debugdir}; \
232           (cd ${debugdir}; \
233           sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \
234               -e 's/srcdir = \.\./srcdir = ..\/../' \
235               -e 's/glibcxx_basedir = \.\./glibcxx_basedir = ..\/../' \
236               -e 's/all-local: build_debug/all-local:/' \
237               -e 's/install-data-local: install_debug/install-data-local:/' \
238           < ../Makefile > Makefile) ; \
239         fi; \
240         echo `date` > stamp-debug;
242 build_debug: stamp-debug
243         (cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' all)
245 # Install debug library here.
246 install_debug:
247         (cd ${debugdir} && $(MAKE) \
248         toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install)