2001-02-15 Benjamin Kosnik <bkoz@redhat.com>
[official-gcc.git] / libstdc++-v3 / libsupc++ / Makefile.am
blob60745660fd617582c1396087116b841826a35d20
1 ## Makefile for the GNU C++ Support library.
2 ##
3 ## Copyright (C) 2000, 2001 Free Software Foundation, Inc.
4 ##
5 ## Process this file with automake to produce Makefile.in.
6 ##
7 ## This file is part of GNU CC.
8 ##
9 ## GNU CC 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.
14 ## GNU CC 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.
19 ## You should have received a copy of the GNU General Public License
20 ## along with GNU CC; see the file COPYING.  If not, write to
21 ## the Free Software Foundation, 59 Temple Place - Suite 330,
22 ## Boston, MA 02111-1307, USA. 
24 AUTOMAKE_OPTIONS = 1.3 cygnus
25 MAINT_CHARSET = latin1
27 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
29 # Cross compiler and multilib support.
30 toolexecdir = @glibcpp_toolexecdir@
31 toolexeclibdir = @glibcpp_toolexeclibdir@
34 # Need this library to both be part of libstdc++.a, and installed
35 # separately too.
36 # 1) separate libsupc++.la 
37 toolexeclib_LTLIBRARIES = libsupc++.la
38 # 2) integrated libsupc++convenience.la that is to be a part of libstdc++.a
39 noinst_LTLIBRARIES = libsupc++convenience.la
42 # Compile flags that should be constant throughout the build, both for
43 # SUBDIRS and for libstdc++-v3 in general.
44 OPTIMIZE_CXXFLAGS = @OPTIMIZE_CXXFLAGS@
46 # These bits are all figured out from configure. Look in acinclude.m4
47 # or configure.in to see how they are set. See GLIBCPP_EXPORT_FLAGS
48 # NB: DEBUGFLAGS have to be at the end so that -O2 can be overridden.
49 CONFIG_CXXFLAGS = \
50         @EXTRA_CXX_FLAGS@ @SECTION_FLAGS@ @CSHADOW_FLAGS@ @DEBUG_FLAGS@ 
52 # Warning flags to use.
53 WARN_CXXFLAGS = \
54         @WARN_FLAGS@ $(WERROR) @WFMT_FLAGS@
56 # Use common includes from acinclude.m4/GLIBCPP_EXPORT_INCLUDES
57 GLIBCPP_INCLUDE_DIR = @GLIBCPP_INCLUDE_DIR@
58 C_INCLUDE_DIR = @C_INCLUDE_DIR@
59 CSTD_INCLUDES = @CSTD_INCLUDES@
60 LIBMATH_INCLUDES = @LIBMATH_INCLUDES@
61 LIBSUPCXX_INCLUDES = @LIBSUPCXX_INCLUDES@
62 LIBIO_INCLUDES = @LIBIO_INCLUDES@
63 TOPLEVEL_INCLUDES = @TOPLEVEL_INCLUDES@
65 INCLUDES = \
66         -I$(toplevel_srcdir)/gcc -I$(toplevel_srcdir)/include \
67         -I$(GLIBCPP_INCLUDE_DIR) $(CSTD_INCLUDES) -I$(top_builddir)/include \
68          $(LIBSUPCXX_INCLUDES)
70 headers = \
71         exception new typeinfo cxxabi.h exception_defines.h 
73 sources = \
74         del_op.cc \
75         del_opnt.cc \
76         del_opv.cc \
77         del_opvnt.cc \
78         exception_support.cc \
79         new_handler.cc \
80         new_op.cc \
81         new_opnt.cc \
82         new_opv.cc \
83         new_opvnt.cc \
84         pure.cc \
85         tinfo.cc \
86         tinfo2.cc \
87         vec.cc
89 libsupc___la_SOURCES = $(sources)
90 libsupc__convenience_la_SOURCES = $(sources)
92 glibcppinstalldir = @gxx_include_dir@
93 glibcppinstall_HEADERS = $(headers)
95 # Flags to force separate libtool library to be static only.
96 LIBTOOL = @LIBTOOL@ --tag disable-shared
97 LIBSUPCXX_CXXFLAGS = -prefer-pic
99 # AM_CXXFLAGS needs to be in each subdirectory so that it can be
100 # modified in a per-library or per-sub-library way.  Need to manually
101 # set this option because CONFIG_CXXFLAGS has to be after
102 # OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
103 # as the occasion call for it. (ie, --enable-debug)
104 AM_CXXFLAGS = \
105         -fno-implicit-templates \
106         $(LIBSUPCXX_CXXFLAGS) \
107         $(WARN_CXXFLAGS) \
108         $(OPTIMIZE_CXXFLAGS) \
109         $(CONFIG_CXXFLAGS) 
111 # libstdc++ libtool notes
113 # 1) Need to explicitly set LTCXXCOMPILE so that AM_CXXFLAGS is
114 # last. (That way, things like -O2 passed down from the toplevel can
115 # be overridden by --enable-debug.)
117 # 2) In general, libtool expects an argument such as `--tag=CXX' when
118 # using the C++ compiler, because that will enable the settings
119 # detected when C++ support was being configured.  However, when no
120 # such flag is given in the command line, libtool attempts to figure
121 # it out by matching the compiler name in each configuration section
122 # against a prefix of the command line.  The problem is that, if the
123 # compiler name and its initial flags stored in the libtool
124 # configuration file don't match those in the command line, libtool
125 # can't decide which configuration to use, and it gives up.  The
126 # correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
127 # CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
128 # attempt to infer which configuration to use.
130 # We have to put --tag disable-shared after --tag CXX lest things
131 # CXX undo the affect of disable-shared.
132 LTCXXCOMPILE = $(LIBTOOL) --tag CXX --tag disable-shared \
133                --mode=compile $(CXX) $(INCLUDES) \
134                $(AM_CPPFLAGS) $(CPPFLAGS) $(CXXFLAGS) $(AM_CXXFLAGS) 
136 # 3) We have a problem when building the shared libstdc++ object if
137 # the rules automake generates would be used.  We cannot allow CXX to
138 # be used in libtool since this would add -lstdc++ to the link line
139 # which of course is problematic at this point.
140 CXXLINK = $(LIBTOOL) --mode=link "$(CC)" \
141           @OPT_LDFLAGS@ @SECTION_LDFLAGS@ $(AM_CXXFLAGS) $(LDFLAGS) -o $@