OSDN Git Service

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