OSDN Git Service

2004-10-08 Benjamin Kosnik <bkoz@redhat.com>
[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 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 2, 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 COPYING.  If not, write to
21 ## the Free Software Foundation, 59 Temple Place - Suite 330,
22 ## Boston, MA 02111-1307, USA.
23
24 include $(top_srcdir)/fragment.am
25
26 # Need this library to both be part of libstdc++.a, and installed
27 # separately too.
28 # 1) separate libsupc++.la
29 toolexeclib_LTLIBRARIES = libsupc++.la
30 # 2) integrated libsupc++convenience.la that is to be a part of libstdc++.a
31 noinst_LTLIBRARIES = libsupc++convenience.la
32
33
34 headers = \
35         exception new typeinfo cxxabi.h exception_defines.h
36
37 if GLIBCXX_HOSTED
38   c_sources = \
39         cp-demangle.c 
40 endif
41
42 sources = \
43         del_op.cc \
44         del_opnt.cc \
45         del_opv.cc \
46         del_opvnt.cc \
47         eh_alloc.cc \
48         eh_aux_runtime.cc \
49         eh_catch.cc \
50         eh_exception.cc \
51         eh_globals.cc \
52         eh_personality.cc \
53         eh_term_handler.cc \
54         eh_terminate.cc \
55         eh_throw.cc \
56         eh_type.cc \
57         eh_unex_handler.cc \
58         guard.cc \
59         new_handler.cc \
60         new_op.cc \
61         new_opnt.cc \
62         new_opv.cc \
63         new_opvnt.cc \
64         pure.cc \
65         tinfo.cc \
66         tinfo2.cc \
67         vec.cc \
68         vterminate.cc
69
70 libsupc___la_SOURCES = $(sources) $(c_sources)
71 libsupc__convenience_la_SOURCES = $(sources) $(c_sources)
72
73 glibcxxinstalldir = $(gxx_include_dir)
74 glibcxxinstall_HEADERS = $(headers)
75
76 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
77 # modified in a per-library or per-sub-library way.  Need to manually
78 # set this option because CONFIG_CXXFLAGS has to be after
79 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
80 # as the occasion call for it.
81 AM_CXXFLAGS = \
82         -fno-implicit-templates \
83         $(LIBSUPCXX_PICFLAGS) \
84         $(WARN_CXXFLAGS) \
85         $(OPTIMIZE_CXXFLAGS) \
86         $(CONFIG_CXXFLAGS)
87
88 AM_MAKEFLAGS = \
89         "gxx_include_dir=$(gxx_include_dir)"
90
91
92 # Use special rules for pulling things out of libiberty.  These
93 # objects should be compiled with the "C" compiler, not the C++
94 # compiler, and also should not use the C++ includes.
95 C_INCLUDES = -I.. -I$(toplevel_srcdir)/libiberty -I$(toplevel_srcdir)/include
96 C_COMPILE = \
97         $(CC) $(DEFS) $(C_INCLUDES) \
98         $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
99
100 # LTCOMPILE is copied from LTCXXCOMPILE below.
101 LTCOMPILE = $(LIBTOOL) --tag CC --tag disable-shared --mode=compile $(CC) \
102             $(DEFS) $(C_INCLUDES) $(LIBSUPCXX_PICFLAGS) \
103             $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
104
105 cp-demangle.c:
106         rm -f $@
107         $(LN_S) $(toplevel_srcdir)/libiberty/cp-demangle.c $@
108 cp-demangle.lo: cp-demangle.c
109         $(LTCOMPILE) -DIN_GLIBCPP_V3 -Wno-error -c $<
110 cp-demangle.o: cp-demangle.c
111         $(C_COMPILE) -DIN_GLIBCPP_V3 -Wno-error -c $<
112
113
114 # libstdc++ libtool notes
115
116 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
117 # last. (That way, things like -O2 passed down from the toplevel can
118 # be overridden by --enable-debug.)
119
120 # 2) In general, libtool expects an argument such as `--tag=CXX' when
121 # using the C++ compiler, because that will enable the settings
122 # detected when C++ support was being configured.  However, when no
123 # such flag is given in the command line, libtool attempts to figure
124 # it out by matching the compiler name in each configuration section
125 # against a prefix of the command line.  The problem is that, if the
126 # compiler name and its initial flags stored in the libtool
127 # configuration file don't match those in the command line, libtool
128 # can't decide which configuration to use, and it gives up.  The
129 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
130 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
131 # attempt to infer which configuration to use.
132 #
133 # We have to put --tag disable-shared after --tag CXX lest things
134 # CXX undo the affect of disable-shared.
135 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared \
136                --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
137                $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS)
138
139 # 3) We'd have a problem when building the shared libstdc++ object if
140 # the rules automake generates would be used.  We cannot allow g++ to
141 # be used since this would add -lstdc++ to the link line which of
142 # course is problematic at this point.  So, we get the top-level
143 # directory to configure libstdc++-v3 to use gcc as the C++
144 # compilation driver.
145 CXXLINK = $(LIBTOOL) --tag CXX --tag disable-shared \
146           --mode=link $(CXX) \
147           $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LDFLAGS) -o $@
148
149 # We have to have rules modified from the default to counteract SUN make
150 # prepending each of $(glibcxxinstall_HEADERS) with VPATH below.
151 install-glibcxxinstallHEADERS: $(glibcxxinstall_HEADERS)
152         @$(NORMAL_INSTALL)
153         $(mkinstalldirs) $(DESTDIR)$(glibcxxinstalldir)
154         @list='$(glibcxxinstall_HEADERS)'; for p in $$list; do \
155           q=`echo $$p | sed -e 's,.*/,,'`; \
156           if test -f "$$p"; then d= ; else d="$(srcdir)/"; fi; \
157           echo " $(INSTALL_DATA) $$d$$p $(DESTDIR)$(glibcxxinstalldir)/$$q"; \
158           $(INSTALL_DATA) $$d$$p $(DESTDIR)$(glibcxxinstalldir)/$$q; \
159         done
160
161 uninstall-glibcxxinstallHEADERS:
162         @$(NORMAL_UNINSTALL)
163         list='$(glibcxxinstall_HEADERS)'; for p in $$list; do \
164           q=`echo $$p | sed -e 's,.*/,,'`; \
165           rm -f $(DESTDIR)$(glibcxxinstalldir)/$$q; \
166         done