Makefile.am revision 1.1.1.1.8.1
1## Makefile for the GNU C++ Support library.
2##
3## Copyright (C) 2000-2013 Free Software Foundation, Inc.
4##
5## Process this file with automake to produce Makefile.in.
6##
7## This file is part of GCC.
8##
9## GCC is free software; you can redistribute it and/or modify
10## it under the terms of the GNU General Public License as published by
11## the Free Software Foundation; either version 3, or (at your option)
12## any later version.
13##
14## GCC is distributed in the hope that it will be useful,
15## but WITHOUT ANY WARRANTY; without even the implied warranty of
16## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17## GNU General Public License for more details.
18##
19## You should have received a copy of the GNU General Public License
20## along with GCC; see the file COPYING3.  If not see
21## <http://www.gnu.org/licenses/>.
22
23include $(top_srcdir)/fragment.am
24
25# Need this library to both be part of libstdc++.a, and installed
26# separately too.
27# 1) separate libsupc++.la
28toolexeclib_LTLIBRARIES = libsupc++.la
29# 2) integrated libsupc++convenience.la that is to be a part of libstdc++.a
30noinst_LTLIBRARIES = libsupc++convenience.la
31
32std_HEADERS = \
33	cxxabi.h exception initializer_list new typeinfo
34
35bits_HEADERS = \
36	atomic_lockfree_defines.h cxxabi_forced.h \
37	exception_defines.h exception_ptr.h hash_bytes.h nested_exception.h
38
39headers = $(std_HEADERS) $(bits_HEADERS)
40
41if GLIBCXX_HOSTED
42  c_sources = \
43	cp-demangle.c
44endif
45
46sources = \
47	array_type_info.cc \
48	atexit_arm.cc \
49	atexit_thread.cc \
50	bad_alloc.cc \
51	bad_cast.cc \
52	bad_typeid.cc \
53	class_type_info.cc \
54	del_op.cc \
55	del_opnt.cc \
56	del_opv.cc \
57	del_opvnt.cc \
58	dyncast.cc \
59	eh_alloc.cc \
60	eh_arm.cc \
61	eh_aux_runtime.cc \
62	eh_call.cc \
63	eh_catch.cc \
64	eh_exception.cc \
65	eh_globals.cc \
66	eh_personality.cc \
67	eh_ptr.cc \
68	eh_term_handler.cc \
69	eh_terminate.cc \
70	eh_tm.cc \
71	eh_throw.cc \
72	eh_type.cc \
73	eh_unex_handler.cc \
74	enum_type_info.cc \
75	function_type_info.cc \
76	fundamental_type_info.cc \
77	guard.cc \
78	guard_error.cc \
79	hash_bytes.cc \
80	nested_exception.cc \
81	new_handler.cc \
82	new_op.cc \
83	new_opnt.cc \
84	new_opv.cc \
85	new_opvnt.cc \
86	pbase_type_info.cc \
87	pmem_type_info.cc \
88	pointer_type_info.cc \
89	pure.cc \
90	si_class_type_info.cc \
91	tinfo.cc \
92	tinfo2.cc \
93	vec.cc \
94	vmi_class_type_info.cc \
95	vterminate.cc
96
97libsupc___la_SOURCES = $(sources) $(c_sources)
98libsupc__convenience_la_SOURCES = $(sources) $(c_sources)
99
100cp-demangle.c:
101	rm -f $@
102	$(LN_S) $(toplevel_srcdir)/libiberty/cp-demangle.c $@
103cp-demangle.lo: cp-demangle.c
104	$(LTCOMPILE) -DIN_GLIBCPP_V3 -Wno-error -c $<
105cp-demangle.o: cp-demangle.c
106	$(C_COMPILE) -DIN_GLIBCPP_V3 -Wno-error -c $<
107
108
109# Use special rules for the C++0x sources so that the proper flags are passed.
110eh_ptr.lo: eh_ptr.cc
111	$(LTCXXCOMPILE) -std=gnu++0x -c $<
112eh_ptr.o: eh_ptr.cc
113	$(CXXCOMPILE) -std=gnu++0x -c $<
114
115eh_throw.lo: eh_throw.cc
116	$(LTCXXCOMPILE) -std=gnu++0x -c $<
117eh_throw.o: eh_throw.cc
118	$(CXXCOMPILE) -std=gnu++0x -c $<
119
120guard.lo: guard.cc
121	$(LTCXXCOMPILE) -std=gnu++0x -c $<
122guard.o: guard.cc
123	$(CXXCOMPILE) -std=gnu++0x -c $<
124
125atexit_thread.lo: atexit_thread.cc
126	$(LTCXXCOMPILE) -std=gnu++0x -c $<
127atexit_thread.o: atexit_thread.cc
128	$(CXXCOMPILE) -std=gnu++0x -c $<
129
130nested_exception.lo: nested_exception.cc
131	$(LTCXXCOMPILE) -std=gnu++0x -c $<
132nested_exception.o: nested_exception.cc
133	$(CXXCOMPILE) -std=gnu++0x -c $<
134
135# AM_CXXFLAGS needs to be in each subdirectory so that it can be
136# modified in a per-library or per-sub-library way.  Need to manually
137# set this option because CONFIG_CXXFLAGS has to be after
138# OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
139# as the occasion call for it.
140AM_CXXFLAGS = \
141	$(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
142	$(XTEMPLATE_FLAGS) \
143	$(WARN_CXXFLAGS) $(OPTIMIZE_CXXFLAGS)  $(CONFIG_CXXFLAGS)
144
145AM_MAKEFLAGS = \
146	"gxx_include_dir=$(gxx_include_dir)"
147
148
149# Use special rules for pulling things out of libiberty.  These
150# objects should be compiled with the "C" compiler, not the C++
151# compiler, and also should not use the C++ includes.
152C_INCLUDES = -I.. -I$(toplevel_srcdir)/libiberty -I$(toplevel_srcdir)/include
153C_COMPILE = \
154	$(CC) $(DEFS) $(C_INCLUDES) \
155	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
156
157# LTCOMPILE is copied from LTCXXCOMPILE below.
158LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared $(LIBTOOLFLAGS) --mode=compile \
159	    $(CC) $(DEFS) $(C_INCLUDES) \
160	    $(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
161	    $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
162
163# Libtool notes
164
165# 1) In general, libtool expects an argument such as `--tag=CXX' when
166# using the C++ compiler, because that will enable the settings
167# detected when C++ support was being configured.  However, when no
168# such flag is given in the command line, libtool attempts to figure
169# it out by matching the compiler name in each configuration section
170# against a prefix of the command line.  The problem is that, if the
171# compiler name and its initial flags stored in the libtool
172# configuration file don't match those in the command line, libtool
173# can't decide which configuration to use, and it gives up.  The
174# correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
175# CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
176# attempt to infer which configuration to use.
177# 
178# The second tag argument, `--tag disable-shared` means that libtool
179# only compiles each source once, for static objects. In actuality,
180# glibcxx_lt_pic_flag and glibcxx_compiler_shared_flag are added to
181# the libtool command that is used create the object, which is
182# suitable for shared libraries.  The `--tag disable-shared` must be
183# placed after --tag CXX lest things CXX undo the affect of
184# disable-shared.
185
186# 2) Need to explicitly set LTCXXCOMPILE so that EXTRA_CXX_FLAGS is
187# last. (That way, things like -O2 passed down from the toplevel can
188# be overridden by --enable-debug.)
189LTCXXCOMPILE = \
190	$(LIBTOOL) --tag CXX --tag disable-shared \
191	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
192	--mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
193	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(EXTRA_CXX_FLAGS)
194
195LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
196
197# 3) We'd have a problem when building the shared libstdc++ object if
198# the rules automake generates would be used.  We cannot allow g++ to
199# be used since this would add -lstdc++ to the link line which of
200# course is problematic at this point.  So, we get the top-level
201# directory to configure libstdc++-v3 to use gcc as the C++
202# compilation driver.
203CXXLINK = \
204	$(LIBTOOL) --tag CXX --tag disable-shared \
205	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
206	--mode=link $(CXX) \
207	$(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
208
209# Install notes
210# We have to have rules modified from the default to counteract SUN make
211# prepending each of $(*_HEADERS) with VPATH below.
212stddir = $(gxx_include_dir)
213bitsdir = $(gxx_include_dir)/bits
214
215install-stdHEADERS: $(std_HEADERS)
216	@$(NORMAL_INSTALL)
217	$(mkinstalldirs) $(DESTDIR)$(stddir)
218	@list='$(std_HEADERS)'; for p in $$list; do \
219	  q=`echo $$p | sed -e 's,.*/,,'`; \
220	  if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
221	  echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(stddir)/$$q"; \
222	  $(INSTALL_DATA) $$d$$p $(DESTDIR)$(stddir)/$$q; \
223	done
224
225install-bitsHEADERS: $(bits_HEADERS)
226	@$(NORMAL_INSTALL)
227	$(mkinstalldirs) $(DESTDIR)$(bitsdir)
228	@list='$(bits_HEADERS)'; for p in $$list; do \
229	  q=`echo $$p | sed -e 's,.*/,,'`; \
230	  if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
231	  echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(bitsdir)/$$q"; \
232	  $(INSTALL_DATA) $$d$$p $(DESTDIR)$(bitsdir)/$$q; \
233	done
234
235uninstall-stdHEADERS:
236	@$(NORMAL_UNINSTALL)
237	list='$(std_HEADERS)'; for p in $$list; do \
238	  q=`echo $$p | sed -e 's,.*/,,'`; \
239	  rm -f $(DESTDIR)$(stddir)/$$q; \
240	done
241
242uninstall-bitsHEADERS:
243	@$(NORMAL_UNINSTALL)
244	list='$(bits_HEADERS)'; for p in $$list; do \
245	  q=`echo $$p | sed -e 's,.*/,,'`; \
246	  rm -f $(DESTDIR)$(bitsdir)/$$q; \
247	done
248