]> gcc.gnu.org Git - gcc.git/blob - libstdc++-v3/Makefile.am
Makefile.am (LIBCFLAGS): Remove duplicate.
[gcc.git] / libstdc++-v3 / Makefile.am
1 ## Makefile for the toplevel directory of the GNU C++ Standard library.
2 ##
3 ## Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003
4 ## Free Software Foundation, Inc.
5 ##
6 ## This file is part of the libstdc++ version 3 distribution.
7 ## Process this file with automake to produce Makefile.in.
8
9 ## This file is part of the GNU ISO C++ Library. This library is free
10 ## software; you can redistribute it and/or modify it under the
11 ## terms of the GNU General Public License as published by the
12 ## Free Software Foundation; either version 2, or (at your option)
13 ## any later version.
14
15 ## This library is distributed in the hope that it will be useful,
16 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ## GNU General Public License for more details.
19
20 ## You should have received a copy of the GNU General Public License along
21 ## with this library; see the file COPYING. If not, write to the Free
22 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 ## USA.
24
25 include $(top_srcdir)/fragment.am
26
27 if GLIBCXX_HOSTED
28 hosted_source = libmath src po testsuite
29 endif
30 ## Keep this list sync'd with acinclude.m4:GLIBCXX_CONFIGURE.
31 SUBDIRS = include libsupc++ $(hosted_source)
32
33 # These rules are messy, but are hella worth it.
34 doxygen:
35 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
36 builddir=`${PWD_COMMAND}`; \
37 ${SHELL} ${srcdir}/docs/doxygen/run_doxygen \
38 --host_alias=${host_alias} \
39 --mode=user $${srcdir} $${builddir})
40
41 doxygen-maint:
42 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
43 builddir=`${PWD_COMMAND}`; \
44 ${SHELL} ${srcdir}/docs/doxygen/run_doxygen \
45 --host_alias=${host_alias} \
46 --mode=maint $${srcdir} $${builddir})
47
48 doxygen-man:
49 -(srcdir=`cd ${top_srcdir}; ${PWD_COMMAND}`; \
50 builddir=`${PWD_COMMAND}`; \
51 ${SHELL} ${srcdir}/docs/doxygen/run_doxygen \
52 --host_alias=${host_alias} \
53 --mode=man $${srcdir} $${builddir})
54
55 .PHONY: doxygen doxygen-maint doxygen-man
56
57 # Handy forwarding targets.
58 check-%:
59 cd testsuite && $(MAKE) $@
60
61 # Multilib support.
62 MAKEOVERRIDES=
63
64 # All the machinations with string instantiations messes up the
65 # automake-generated TAGS rule. Make a simple one here.
66 TAGS: tags-recursive $(LISP)
67
68 # Work around what appears to be a GNU make bug handling MAKEFLAGS
69 # values defined in terms of make variables, as is the case for CC and
70 # friends when we are called from the top level Makefile.
71 AM_MAKEFLAGS = \
72 "AR_FLAGS=$(AR_FLAGS)" \
73 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
74 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
75 "CFLAGS=$(CFLAGS)" \
76 "CXXFLAGS=$(CXXFLAGS)" \
77 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
78 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
79 "INSTALL=$(INSTALL)" \
80 "INSTALL_DATA=$(INSTALL_DATA)" \
81 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
82 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
83 "LDFLAGS=$(LDFLAGS)" \
84 "LIBCFLAGS=$(LIBCFLAGS)" \
85 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
86 "MAKE=$(MAKE)" \
87 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
88 "PICFLAG=$(PICFLAG)" \
89 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
90 "SHELL=$(SHELL)" \
91 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
92 "exec_prefix=$(exec_prefix)" \
93 "infodir=$(infodir)" \
94 "libdir=$(libdir)" \
95 "includedir=$(includedir)" \
96 "prefix=$(prefix)" \
97 "tooldir=$(tooldir)" \
98 "gxx_include_dir=$(gxx_include_dir)" \
99 "AR=$(AR)" \
100 "AS=$(AS)" \
101 "LD=$(LD)" \
102 "RANLIB=$(RANLIB)" \
103 "NM=$(NM)" \
104 "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
105 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
106 "DESTDIR=$(DESTDIR)" \
107 "WERROR=$(WERROR)"
108
109 # Subdir rules rely on $(FLAGS_TO_PASS)
110 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
This page took 0.046197 seconds and 6 git commands to generate.