OSDN Git Service

Add new FMA test case
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / libsupc++ / Makefile.am
1 ## Makefile for the GNU C++ Support library.
2 ##
3 ## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
4 ## 2009, 2010
5 ## Free Software Foundation, Inc.
6 ##
7 ## Process this file with automake to produce Makefile.in.
8 ##
9 ## This file is part of GCC.
10 ##
11 ## GCC is free software; you can redistribute it and/or modify
12 ## it under the terms of the GNU General Public License as published by
13 ## the Free Software Foundation; either version 3, or (at your option)
14 ## any later version.
15 ##
16 ## GCC 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
22 ## along with GCC; see the file COPYING3.  If not see
23 ## <http://www.gnu.org/licenses/>.
24
25 include $(top_srcdir)/fragment.am
26
27 # Need this library to both be part of libstdc++.a, and installed
28 # separately too.
29 # 1) separate libsupc++.la
30 toolexeclib_LTLIBRARIES = libsupc++.la
31 # 2) integrated libsupc++convenience.la that is to be a part of libstdc++.a
32 noinst_LTLIBRARIES = libsupc++convenience.la
33
34
35 headers = \
36         exception new typeinfo cxxabi.h cxxabi-forced.h exception_defines.h \
37         initializer_list exception_ptr.h nested_exception.h
38
39 if GLIBCXX_HOSTED
40   c_sources = \
41         cp-demangle.c 
42 endif
43
44 sources = \
45         array_type_info.cc \
46         atexit_arm.cc \
47         bad_alloc.cc \
48         bad_cast.cc \
49         bad_typeid.cc \
50         class_type_info.cc \
51         del_op.cc \
52         del_opnt.cc \
53         del_opv.cc \
54         del_opvnt.cc \
55         dyncast.cc \
56         eh_alloc.cc \
57         eh_arm.cc \
58         eh_aux_runtime.cc \
59         eh_call.cc \
60         eh_catch.cc \
61         eh_exception.cc \
62         eh_globals.cc \
63         eh_personality.cc \
64         eh_ptr.cc \
65         eh_term_handler.cc \
66         eh_terminate.cc \
67         eh_throw.cc \
68         eh_type.cc \
69         eh_unex_handler.cc \
70         enum_type_info.cc \
71         function_type_info.cc \
72         fundamental_type_info.cc \
73         guard.cc \
74         hash_bytes.cc \
75         new_handler.cc \
76         new_op.cc \
77         new_opnt.cc \
78         new_opv.cc \
79         new_opvnt.cc \
80         pbase_type_info.cc \
81         pmem_type_info.cc \
82         pointer_type_info.cc \
83         pure.cc \
84         si_class_type_info.cc \
85         tinfo.cc \
86         tinfo2.cc \
87         vec.cc \
88         vmi_class_type_info.cc \
89         vterminate.cc
90
91 libsupc___la_SOURCES = $(sources) $(c_sources)
92 libsupc__convenience_la_SOURCES = $(sources) $(c_sources)
93
94 glibcxxinstalldir = $(gxx_include_dir)
95 glibcxxinstall_HEADERS = $(headers)
96
97 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
98 # modified in a per-library or per-sub-library way.  Need to manually
99 # set this option because CONFIG_CXXFLAGS has to be after
100 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
101 # as the occasion call for it.
102 AM_CXXFLAGS = \
103         -fno-implicit-templates \
104         $(LIBSUPCXX_PICFLAGS) \
105         $(WARN_CXXFLAGS) \
106         $(OPTIMIZE_CXXFLAGS) \
107         $(CONFIG_CXXFLAGS)
108
109 AM_MAKEFLAGS = \
110         "gxx_include_dir=$(gxx_include_dir)"
111
112
113 # Use special rules for pulling things out of libiberty.  These
114 # objects should be compiled with the "C" compiler, not the C++
115 # compiler, and also should not use the C++ includes.
116 C_INCLUDES = -I.. -I$(toplevel_srcdir)/libiberty -I$(toplevel_srcdir)/include
117 C_COMPILE = \
118         $(CC) $(DEFS) $(C_INCLUDES) \
119         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
120
121 # LTCOMPILE is copied from LTCXXCOMPILE below.
122 LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared $(LIBTOOLFLAGS) --mode=compile \
123             $(CC) $(DEFS) $(C_INCLUDES) $(LIBSUPCXX_PICFLAGS) \
124             $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
125
126 cp-demangle.c:
127         rm -f $@
128         $(LN_S) $(toplevel_srcdir)/libiberty/cp-demangle.c $@
129 cp-demangle.lo: cp-demangle.c
130         $(LTCOMPILE) -DIN_GLIBCPP_V3 -Wno-error -c $<
131 cp-demangle.o: cp-demangle.c
132         $(C_COMPILE) -DIN_GLIBCPP_V3 -Wno-error -c $<
133
134
135 # libstdc++ libtool notes
136
137 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
138 # last. (That way, things like -O2 passed down from the toplevel can
139 # be overridden by --enable-debug.)
140
141 # 2) In general, libtool expects an argument such as `--tag=CXX' when
142 # using the C++ compiler, because that will enable the settings
143 # detected when C++ support was being configured.  However, when no
144 # such flag is given in the command line, libtool attempts to figure
145 # it out by matching the compiler name in each configuration section
146 # against a prefix of the command line.  The problem is that, if the
147 # compiler name and its initial flags stored in the libtool
148 # configuration file don't match those in the command line, libtool
149 # can't decide which configuration to use, and it gives up.  The
150 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
151 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
152 # attempt to infer which configuration to use.
153 #
154 # We have to put --tag disable-shared after --tag CXX lest things
155 # CXX undo the affect of disable-shared.
156 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared $(LIBTOOLFLAGS) \
157                --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
158                $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) 
159
160 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
161
162 # 3) We'd have a problem when building the shared libstdc++ object if
163 # the rules automake generates would be used.  We cannot allow g++ to
164 # be used since this would add -lstdc++ to the link line which of
165 # course is problematic at this point.  So, we get the top-level
166 # directory to configure libstdc++-v3 to use gcc as the C++
167 # compilation driver.
168 CXXLINK = $(LIBTOOL) --tag CXX --tag disable-shared $(LIBTOOLFLAGS) \
169           --mode=link $(CXX) \
170           $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
171
172 # We have to have rules modified from the default to counteract SUN make
173 # prepending each of $(glibcxxinstall_HEADERS) with VPATH below.
174 install-glibcxxinstallHEADERS: $(glibcxxinstall_HEADERS)
175         @$(NORMAL_INSTALL)
176         $(mkinstalldirs) $(DESTDIR)$(glibcxxinstalldir)
177         @list='$(glibcxxinstall_HEADERS)'; for p in $$list; do \
178           q=`echo $$p | sed -e 's,.*/,,'`; \
179           if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
180           echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(glibcxxinstalldir)/$$q"; \
181           $(INSTALL_DATA) $$d$$p $(DESTDIR)$(glibcxxinstalldir)/$$q; \
182         done
183
184 uninstall-glibcxxinstallHEADERS:
185         @$(NORMAL_UNINSTALL)
186         list='$(glibcxxinstall_HEADERS)'; for p in $$list; do \
187           q=`echo $$p | sed -e 's,.*/,,'`; \
188           rm -f $(DESTDIR)$(glibcxxinstalldir)/$$q; \
189         done