Makefile.am: Add functional.cc, shared_ptr.cc.
[gcc.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, 2004, 2005
4 ## 2006, 2007, 2008, 2009, 2010, 2011
5 ## Free Software Foundation, Inc.
6 ##
7 ## This file is part of the libstdc++ version 3 distribution.
8 ## Process this file with automake to produce Makefile.in.
9
10 ## This file is part of the GNU ISO C++ Library. This library is free
11 ## software; you can redistribute it and/or modify it under the
12 ## terms of the GNU General Public License as published by the
13 ## Free Software Foundation; either version 3, or (at your option)
14 ## any later version.
15
16 ## This library is distributed in the hope that it will be useful,
17 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ## GNU General Public License for more details.
20
21 ## You should have received a copy of the GNU General Public License along
22 ## with this library; see the file COPYING3. If not see
23 ## <http://www.gnu.org/licenses/>.
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 CLEANFILES = libstdc++-symbols.ver
49
50 if ENABLE_SYMVERS_GNU
51 if ENABLE_SYMVERS_SOL2
52 version_arg = -Wl,--version-script,libstdc++-symbols.ver-sol2
53 version_dep = libstdc++-symbols.ver-sol2
54 libstdc++-symbols.ver-sol2 : libstdc++-symbols.ver
55 sed -e '/^#ifdef HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT/,/^#endif/d' $< \
56 > $@ || (rm -f $@ ; exit 1)
57 else
58 version_arg = -Wl,--version-script=libstdc++-symbols.ver
59 version_dep = libstdc++-symbols.ver
60 endif
61 endif
62 if ENABLE_SYMVERS_GNU_NAMESPACE
63 version_arg = -Wl,--version-script=libstdc++-symbols.ver
64 version_dep = libstdc++-symbols.ver
65 endif
66 if ENABLE_SYMVERS_SUN
67 version_arg = -Wl,-M,libstdc++-symbols.ver-sun
68 version_dep = libstdc++-symbols.ver-sun
69 libstdc++-symbols.ver-sun : libstdc++-symbols.ver \
70 $(toplevel_srcdir)/contrib/make_sunver.pl \
71 $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD)
72 CXXFILT="$(CXXFILT)"; export CXXFILT; \
73 perl $(toplevel_srcdir)/contrib/make_sunver.pl \
74 libstdc++-symbols.ver \
75 $(libstdc___la_OBJECTS:%.lo=.libs/%.o) \
76 `echo $(libstdc___la_LIBADD) | \
77 sed 's,/\([^/.]*\)\.la,/.libs/\1.a,g'` \
78 > $@ || (rm -f $@ ; exit 1)
79 endif
80 if ENABLE_SYMVERS_DARWIN
81 version_arg = -Wl,-exported_symbols_list,libstdc++-symbols.explist
82 version_dep = libstdc++-symbols.explist
83 libstdc++-symbols.explist : libstdc++-symbols.ver \
84 ${glibcxx_srcdir}/scripts/make_exports.pl \
85 $(libstdc___la_OBJECTS) $(libstdc___la_LIBADD)
86 perl ${glibcxx_srcdir}/scripts/make_exports.pl \
87 libstdc++-symbols.ver \
88 $(libstdc___la_OBJECTS:%.lo=.libs/%.o) \
89 `echo $(libstdc___la_LIBADD) | \
90 sed 's,/\([^/.]*\)\.la,/.libs/\1.a,g'` \
91 > $@ || (rm -f $@ ; exit 1)
92 endif
93
94 CLEANFILES += $(version_dep)
95 else
96 version_arg =
97 version_dep =
98 endif
99
100
101 # Source files linked in via configuration/make substitution for a
102 # particular host.
103 host_sources = \
104 atomicity.cc \
105 codecvt_members.cc \
106 collate_members.cc \
107 ctype_members.cc \
108 messages_members.cc \
109 monetary_members.cc \
110 numeric_members.cc \
111 time_members.cc
112
113 codecvt_members.cc: ${glibcxx_srcdir}/$(CCODECVT_CC)
114 $(LN_S) ${glibcxx_srcdir}/$(CCODECVT_CC) . || true
115
116 collate_members.cc: ${glibcxx_srcdir}/$(CCOLLATE_CC)
117 $(LN_S) ${glibcxx_srcdir}/$(CCOLLATE_CC) . || true
118
119 ctype_members.cc: ${glibcxx_srcdir}/$(CCTYPE_CC)
120 $(LN_S) ${glibcxx_srcdir}/$(CCTYPE_CC) . || true
121
122 messages_members.cc: ${glibcxx_srcdir}/$(CMESSAGES_CC)
123 $(LN_S) ${glibcxx_srcdir}/$(CMESSAGES_CC) . || true
124
125 monetary_members.cc: ${glibcxx_srcdir}/$(CMONEY_CC)
126 $(LN_S) ${glibcxx_srcdir}/$(CMONEY_CC) . || true
127
128 numeric_members.cc: ${glibcxx_srcdir}/$(CNUMERIC_CC)
129 $(LN_S) ${glibcxx_srcdir}/$(CNUMERIC_CC) . || true
130
131 time_members.cc: ${glibcxx_srcdir}/$(CTIME_CC)
132 $(LN_S) ${glibcxx_srcdir}/$(CTIME_CC) . || true
133
134 atomicity_file = ${glibcxx_srcdir}/$(ATOMICITY_SRCDIR)/atomicity.h
135 atomicity.cc: ${atomicity_file}
136 $(LN_S) ${atomicity_file} ./atomicity.cc || true
137
138 # Source files linked in via configuration/make substitution for a
139 # particular host, but with ad hoc naming rules.
140 host_sources_extra = \
141 basic_file.cc c++locale.cc \
142 ${inst_sources} ${ldbl_compat_sources} ${parallel_sources}
143
144 c++locale.cc: ${glibcxx_srcdir}/$(CLOCALE_CC)
145 $(LN_S) ${glibcxx_srcdir}/$(CLOCALE_CC) ./$@ || true
146
147 basic_file.cc: ${glibcxx_srcdir}/$(BASIC_FILE_CC)
148 $(LN_S) ${glibcxx_srcdir}/$(BASIC_FILE_CC) ./$@ || true
149
150 if ENABLE_PARALLEL
151 parallel_sources = parallel_settings.cc \
152 compatibility-parallel_list.cc \
153 compatibility-parallel_list-2.cc
154 else
155 parallel_sources =
156 endif
157
158 if GLIBCXX_LDBL_COMPAT
159 ldbl_compat_sources = compatibility-ldbl.cc
160 else
161 ldbl_compat_sources =
162 endif
163
164 if ENABLE_EXTERN_TEMPLATE
165 XTEMPLATE_FLAGS = -fno-implicit-templates
166 inst_sources = \
167 allocator-inst.cc \
168 concept-inst.cc \
169 ext-inst.cc \
170 fstream-inst.cc \
171 ios-inst.cc \
172 iostream-inst.cc \
173 istream-inst.cc \
174 locale-inst.cc \
175 misc-inst.cc \
176 ostream-inst.cc \
177 sstream-inst.cc \
178 streambuf-inst.cc \
179 string-inst.cc \
180 wlocale-inst.cc \
181 wstring-inst.cc
182 else
183 XTEMPLATE_FLAGS =
184 inst_sources =
185 endif
186
187 # Sources present in the src directory, always present.
188 sources = \
189 atomic.cc \
190 bitmap_allocator.cc \
191 pool_allocator.cc \
192 mt_allocator.cc \
193 codecvt.cc \
194 compatibility.cc \
195 compatibility-c++0x.cc \
196 compatibility-debug_list.cc \
197 compatibility-debug_list-2.cc \
198 compatibility-list.cc \
199 compatibility-list-2.cc \
200 complex_io.cc \
201 ctype.cc \
202 debug.cc \
203 functexcept.cc \
204 functional.cc \
205 globals_io.cc \
206 hash_c++0x.cc \
207 hash_tr1.cc \
208 hashtable_c++0x.cc \
209 hashtable_tr1.cc \
210 ios.cc \
211 ios_failure.cc \
212 ios_init.cc \
213 ios_locale.cc \
214 limits.cc \
215 list.cc \
216 locale.cc \
217 locale_init.cc \
218 locale_facets.cc \
219 localename.cc \
220 math_stubs_float.cc \
221 math_stubs_long_double.cc \
222 stdexcept.cc \
223 strstream.cc \
224 system_error.cc \
225 tree.cc \
226 istream.cc \
227 placeholders.cc \
228 regex.cc \
229 shared_ptr.cc \
230 streambuf.cc \
231 mutex.cc \
232 condition_variable.cc \
233 chrono.cc \
234 thread.cc \
235 future.cc \
236 valarray.cc \
237 ${host_sources} \
238 ${host_sources_extra}
239
240 vpath % $(top_srcdir)/src
241 vpath % $(top_srcdir)
242
243 libstdc___la_SOURCES = $(sources)
244
245 libstdc___la_LIBADD = \
246 $(GLIBCXX_LIBS) \
247 $(top_builddir)/libsupc++/libsupc++convenience.la
248
249 libstdc___la_DEPENDENCIES = \
250 ${version_dep} \
251 $(top_builddir)/libsupc++/libsupc++convenience.la
252
253 libstdc___la_LDFLAGS = \
254 -version-info $(libtool_VERSION) ${version_arg} -lm
255
256 libstdc___la_LINK = $(CXXLINK) $(libstdc___la_LDFLAGS)
257
258 # Use special rules for the deprecated source files so that they find
259 # deprecated include files.
260 GLIBCXX_INCLUDE_DIR=$(glibcxx_builddir)/include
261 strstream.lo: strstream.cc
262 $(LTCXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
263 strstream.o: strstream.cc
264 $(CXXCOMPILE) -I$(GLIBCXX_INCLUDE_DIR)/backward -Wno-deprecated -c $<
265
266 # Use special rules for the concept-checking instantiations so that all
267 # the generated template functions are also instantiated. Force the checks
268 # to be on so that the instantiations are actually seen.
269 concept-inst.lo: concept-inst.cc
270 $(LTCXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
271 concept-inst.o: concept-inst.cc
272 $(CXXCOMPILE) -D_GLIBCXX_CONCEPT_CHECKS -fimplicit-templates -c $<
273
274 # Use special rules for parallel mode compilation.
275 PARALLEL_FLAGS = -fopenmp -D_GLIBCXX_PARALLEL -I$(glibcxx_builddir)/../libgomp
276 parallel_settings.lo: parallel_settings.cc
277 $(LTCXXCOMPILE) $(PARALLEL_FLAGS) -c $<
278 parallel_settings.o: parallel_settings.cc
279 $(CXXCOMPILE) $(PARALLEL_FLAGS) -c $<
280
281 compatibility-parallel_list.lo: compatibility-parallel_list.cc
282 $(LTCXXCOMPILE) -c $<
283 compatibility-parallel_list.o: compatibility-parallel_list.cc
284 $(CXXCOMPILE) -c $<
285
286 compatibility-parallel_list-2.lo: compatibility-parallel_list-2.cc
287 $(LTCXXCOMPILE) -c $<
288 compatibility-parallel_list-2.o: compatibility-parallel_list-2.cc
289 $(CXXCOMPILE) -c $<
290
291 # Use special rules for the C++0x sources so that the proper flags are passed.
292 functexcept.lo: functexcept.cc
293 $(LTCXXCOMPILE) -std=gnu++0x -c $<
294 functexcept.o: functexcept.cc
295 $(CXXCOMPILE) -std=gnu++0x -c $<
296
297 shared_ptr.lo: shared_ptr.cc
298 $(LTCXXCOMPILE) -std=gnu++0x -c $<
299 shared_ptr.o: shared_ptr.cc
300 $(CXXCOMPILE) -std=gnu++0x -c $<
301
302 system_error.lo: system_error.cc
303 $(LTCXXCOMPILE) -std=gnu++0x -c $<
304 system_error.o: system_error.cc
305 $(CXXCOMPILE) -std=gnu++0x -c $<
306
307 mutex.lo: mutex.cc
308 $(LTCXXCOMPILE) -std=gnu++0x -c $<
309 mutex.o: mutex.cc
310 $(CXXCOMPILE) -std=gnu++0x -c $<
311
312 condition_variable.lo: condition_variable.cc
313 $(LTCXXCOMPILE) -std=gnu++0x -c $<
314 condition_variable.o: condition_variable.cc
315 $(CXXCOMPILE) -std=gnu++0x -c $<
316
317 compatibility-c++0x.lo: compatibility-c++0x.cc
318 $(LTCXXCOMPILE) -std=gnu++0x -c $<
319 compatibility-c++0x.o: compatibility-c++0x.cc
320 $(CXXCOMPILE) -std=gnu++0x -c $<
321
322 functional.lo: functional.cc
323 $(LTCXXCOMPILE) -std=gnu++0x -c $<
324 functional.o: functional.cc
325 $(CXXCOMPILE) -std=gnu++0x -c $<
326
327 hash_c++0x.lo: hash_c++0x.cc
328 $(LTCXXCOMPILE) -std=gnu++0x -c $<
329 hash_c++0x.o: hash_c++0x.cc
330 $(CXXCOMPILE) -std=gnu++0x -c $<
331
332 hashtable_c++0x.lo: hashtable_c++0x.cc
333 $(LTCXXCOMPILE) -std=gnu++0x -c $<
334 hashtable_c++0x.o: hashtable_c++0x.cc
335 $(CXXCOMPILE) -std=gnu++0x -c $<
336
337 limits.lo: limits.cc
338 $(LTCXXCOMPILE) -std=gnu++0x -c $<
339 limits.o: limits.cc
340 $(CXXCOMPILE) -std=gnu++0x -c $<
341
342 atomic.lo: atomic.cc
343 $(LTCXXCOMPILE) -std=gnu++0x -c $<
344 atomic.o: atomic.cc
345 $(CXXCOMPILE) -std=gnu++0x -c $<
346
347 fstream-inst.lo: fstream-inst.cc
348 $(LTCXXCOMPILE) -std=gnu++0x -c $<
349 fstream-inst.o: fstream-inst.cc
350 $(CXXCOMPILE) -std=gnu++0x -c $<
351
352 string-inst.lo: string-inst.cc
353 $(LTCXXCOMPILE) -std=gnu++0x -c $<
354 string-inst.o: string-inst.cc
355 $(CXXCOMPILE) -std=gnu++0x -c $<
356
357 wstring-inst.lo: wstring-inst.cc
358 $(LTCXXCOMPILE) -std=gnu++0x -c $<
359 wstring-inst.o: wstring-inst.cc
360 $(CXXCOMPILE) -std=gnu++0x -c $<
361
362 chrono.lo: chrono.cc
363 $(LTCXXCOMPILE) -std=gnu++0x -c $<
364 chrono.o: chrono.cc
365 $(CXXCOMPILE) -std=gnu++0x -c $<
366
367 thread.lo: thread.cc
368 $(LTCXXCOMPILE) -std=gnu++0x -c $<
369 thread.o: thread.cc
370 $(CXXCOMPILE) -std=gnu++0x -c $<
371
372 future.lo: future.cc
373 $(LTCXXCOMPILE) -std=gnu++0x -c $<
374 future.o: future.cc
375 $(CXXCOMPILE) -std=gnu++0x -c $<
376
377 regex.lo: regex.cc
378 $(LTCXXCOMPILE) -std=gnu++0x -c $<
379 regex.o: regex.cc
380 $(CXXCOMPILE) -std=gnu++0x -c $<
381
382 debug.lo: debug.cc
383 $(LTCXXCOMPILE) -std=gnu++0x -c $<
384 debug.o: debug.cc
385 $(CXXCOMPILE) -std=gnu++0x -c $<
386
387 placeholders.lo: placeholders.cc
388 $(LTCXXCOMPILE) -std=gnu++0x -c $<
389 placeholders.o: placeholders.cc
390 $(CXXCOMPILE) -std=gnu++0x -c $<
391
392 if GLIBCXX_LDBL_COMPAT
393 # Use special rules for compatibility-ldbl.cc compilation, as we need to
394 # pass -mlong-double-64.
395 compatibility-ldbl.lo: compatibility-ldbl.cc
396 $(LTCXXCOMPILE) -mlong-double-64 -c $<
397 compatibility-ldbl.o: compatibility-ldbl.cc
398 $(CXXCOMPILE) -mlong-double-64 -c $<
399 endif
400
401 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
402 # modified in a per-library or per-sub-library way. Need to manually
403 # set this option because CONFIG_CXXFLAGS has to be after
404 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
405 # as the occasion calls for it.
406 AM_CXXFLAGS = \
407 $(XTEMPLATE_FLAGS) \
408 $(WARN_CXXFLAGS) \
409 $(OPTIMIZE_CXXFLAGS) \
410 $(CONFIG_CXXFLAGS)
411
412
413 # libstdc++ libtool notes
414
415 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
416 # last. (That way, things like -O2 passed down from the toplevel can
417 # be overridden by --enable-debug.)
418
419 # 2) In general, libtool expects an argument such as `--tag=CXX' when
420 # using the C++ compiler, because that will enable the settings
421 # detected when C++ support was being configured. However, when no
422 # such flag is given in the command line, libtool attempts to figure
423 # it out by matching the compiler name in each configuration section
424 # against a prefix of the command line. The problem is that, if the
425 # compiler name and its initial flags stored in the libtool
426 # configuration file don't match those in the command line, libtool
427 # can't decide which configuration to use, and it gives up. The
428 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
429 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
430 # attempt to infer which configuration to use
431 LTCXXCOMPILE = $(LIBTOOL) --tag CXX \
432 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile \
433 $(CXX) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
434 $(AM_CXXFLAGS) $(CXXFLAGS)
435
436 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
437
438 # 3) We'd have a problem when building the shared libstdc++ object if
439 # the rules automake generates would be used. We cannot allow g++ to
440 # be used since this would add -lstdc++ to the link line which of
441 # course is problematic at this point. So, we get the top-level
442 # directory to configure libstdc++-v3 to use gcc as the C++
443 # compilation driver.
444 CXXLINK = $(LIBTOOL) --tag CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
445 $(CXX) $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
446
447
448 # Added bits to build debug library.
449 if GLIBCXX_BUILD_DEBUG
450 all-local: build_debug
451 install-data-local: install_debug
452 else
453 all-local:
454 install-data-local:
455 endif
456
457 debugdir = debug
458
459 # Build a set of debug objects here.
460 # Take care to fix all possibly-relative paths.
461 stamp-debug:
462 if test ! -d ${debugdir}; then \
463 mkdir -p ${debugdir}; \
464 (cd ${debugdir}; \
465 sed -e 's/top_builddir = \.\./top_builddir = ..\/../' \
466 -e 's/top_build_prefix = \.\./top_build_prefix = ..\/../' \
467 -e 's/srcdir = \.\./srcdir = ..\/../' \
468 -e 's/VPATH = \.\./VPATH = ..\/../' \
469 -e 's/glibcxx_basedir = \.\./glibcxx_basedir = ..\/../' \
470 -e 's/MKDIR_P = \.\./MKDIR_P = ..\/../' \
471 -e 's/all-local: build_debug/all-local:/' \
472 -e 's/install-data-local: install_debug/install-data-local:/' \
473 < ../Makefile > Makefile) ; \
474 fi; \
475 echo `date` > stamp-debug;
476
477 build_debug: stamp-debug
478 (cd ${debugdir} && $(MAKE) CXXFLAGS='$(DEBUG_FLAGS)' all)
479
480 # Install debug library here.
481 install_debug:
482 (cd ${debugdir} && $(MAKE) \
483 toolexeclibdir=$(glibcxx_toolexeclibdir)/debug install)