2002-02-01 18:16:02 +00:00
|
|
|
|
# Top level -*- makefile -*- fragment for GNU C++.
|
2004-07-28 03:11:36 +00:00
|
|
|
|
# Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003
|
2002-02-01 18:16:02 +00:00
|
|
|
|
# Free Software Foundation, Inc.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
#This file is part of GCC.
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
#GCC is free software; you can redistribute it and/or modify
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#it under the terms of the GNU General Public License as published by
|
|
|
|
|
#the Free Software Foundation; either version 2, or (at your option)
|
|
|
|
|
#any later version.
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
#GCC is distributed in the hope that it will be useful,
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
#GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
#You should have received a copy of the GNU General Public License
|
2004-07-28 03:11:36 +00:00
|
|
|
|
#along with GCC; see the file COPYING. If not, write to
|
1996-09-18 05:35:50 +00:00
|
|
|
|
#the Free Software Foundation, 59 Temple Place - Suite 330,
|
|
|
|
|
#Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
|
|
# This file provides the language dependent support in the main Makefile.
|
|
|
|
|
# Each language makefile fragment must provide the following targets:
|
|
|
|
|
#
|
|
|
|
|
# foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
|
2004-07-28 03:11:36 +00:00
|
|
|
|
# foo.install-normal, foo.install-common, foo.install-man,
|
2002-02-01 18:16:02 +00:00
|
|
|
|
# foo.uninstall,
|
2004-07-28 03:11:36 +00:00
|
|
|
|
# foo.mostlyclean, foo.clean, foo.distclean,
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
|
|
|
|
|
#
|
|
|
|
|
# where `foo' is the name of the language.
|
|
|
|
|
#
|
|
|
|
|
# It should also provide rules for:
|
|
|
|
|
#
|
|
|
|
|
# - making any compiler driver (eg: g++)
|
|
|
|
|
# - the compiler proper (eg: cc1plus)
|
|
|
|
|
# - define the names for selecting the language in LANGUAGES.
|
|
|
|
|
|
|
|
|
|
# Actual names to use when installing a native compiler.
|
2004-07-28 03:11:36 +00:00
|
|
|
|
CXX_INSTALL_NAME := $(shell echo c++|sed '$(program_transform_name)')
|
|
|
|
|
GXX_INSTALL_NAME := $(shell echo g++|sed '$(program_transform_name)')
|
|
|
|
|
CXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo c++|sed '$(program_transform_name)')
|
|
|
|
|
GXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo g++|sed '$(program_transform_name)')
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
|
|
|
|
#
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# Define the names for selecting c++ in LANGUAGES.
|
|
|
|
|
# Note that it would be nice to move the dependency on g++
|
|
|
|
|
# into the C++ rule, but that needs a little bit of work
|
|
|
|
|
# to do the right thing within all.cross.
|
1999-08-26 09:30:50 +00:00
|
|
|
|
C++ c++: cc1plus$(exeext)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
# Tell GNU make to ignore these if they exist.
|
|
|
|
|
.PHONY: C++ c++
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
g++spec.o: $(srcdir)/cp/g++spec.c $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H) $(CONFIG_H)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
(SHLIB_LINK='$(SHLIB_LINK)' \
|
|
|
|
|
SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
|
|
|
|
|
$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
|
|
|
|
|
$(INCLUDES) $(srcdir)/cp/g++spec.c)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# Create the compiler driver for g++.
|
1999-10-16 06:09:09 +00:00
|
|
|
|
GXX_OBJS = gcc.o g++spec.o intl.o prefix.o version.o
|
|
|
|
|
g++$(exeext): $(GXX_OBJS) $(EXTRA_GCC_OBJS) $(LIBDEPS)
|
|
|
|
|
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
|
|
|
|
|
$(GXX_OBJS) $(EXTRA_GCC_OBJS) $(LIBS)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
# Create a version of the g++ driver which calls the cross-compiler.
|
1999-08-26 09:30:50 +00:00
|
|
|
|
g++-cross$(exeext): g++$(exeext)
|
|
|
|
|
-rm -f g++-cross$(exeext)
|
|
|
|
|
cp g++$(exeext) g++-cross$(exeext)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2002-02-01 18:16:02 +00:00
|
|
|
|
# The compiler itself.
|
|
|
|
|
# Shared with C front end:
|
|
|
|
|
CXX_C_OBJS = attribs.o c-common.o c-format.o c-pragma.o c-semantics.o c-lex.o \
|
2004-07-28 03:11:36 +00:00
|
|
|
|
c-dump.o $(CXX_TARGET_OBJS) c-pretty-print.o c-opts.o c-pch.o \
|
|
|
|
|
c-incpath.o cppdefault.o c-ppoutput.o c-cppbuiltin.o prefix.o
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
# Language-specific object files.
|
|
|
|
|
CXX_OBJS = cp/call.o cp/decl.o cp/expr.o cp/pt.o cp/typeck2.o \
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o cp/rtti.o \
|
|
|
|
|
cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o \
|
|
|
|
|
cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o \
|
|
|
|
|
cp/mangle.o cp/cp-lang.o cp/name-lookup.o cp/cxx-pretty-print.o
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
# Use strict warnings for this front end.
|
|
|
|
|
cp-warn = $(STRICT_WARN) $(WERROR)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
cc1plus$(exeext): $(CXX_OBJS) $(CXX_C_OBJS) $(BACKEND) \
|
|
|
|
|
libcpp.a $(LIBDEPS)
|
|
|
|
|
$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
|
|
|
|
|
$(CXX_OBJS) $(CXX_C_OBJS) $(BACKEND) libcpp.a $(LIBS)
|
|
|
|
|
|
|
|
|
|
# Special build rules.
|
|
|
|
|
$(srcdir)/cp/cfns.h: $(srcdir)/cp/cfns.gperf
|
2004-07-28 03:11:36 +00:00
|
|
|
|
gperf -o -C -E -k '1-6,$$' -j1 -D -N 'libc_name_p' -L ANSI-C \
|
2002-02-01 18:16:02 +00:00
|
|
|
|
$(srcdir)/cp/cfns.gperf > $(srcdir)/cp/cfns.h
|
|
|
|
|
|
2003-07-11 03:40:53 +00:00
|
|
|
|
gtype-cp.h gt-cp-call.h gt-cp-decl.h gt-cp-decl2.h : s-gtype; @true
|
2004-07-28 03:11:36 +00:00
|
|
|
|
gt-cp-pt.h gt-cp-repo.h gt-cp-parser.h gt-cp-method.h : s-gtype; @true
|
|
|
|
|
gt-cp-tree.h gt-cp-mangle.h gt-cp-name-lookup.h: s-gtype; @true
|
2003-07-11 03:40:53 +00:00
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# Build hooks:
|
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
c++.all.build: g++$(exeext)
|
2003-07-11 03:40:53 +00:00
|
|
|
|
c++.all.cross: g++-cross$(exeext)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
c++.start.encap: g++$(exeext)
|
2003-07-11 03:40:53 +00:00
|
|
|
|
c++.rest.encap:
|
2004-07-28 03:11:36 +00:00
|
|
|
|
c++.info:
|
|
|
|
|
c++.srcinfo:
|
|
|
|
|
c++.srcextra:
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
c++.tags: force
|
|
|
|
|
cd $(srcdir)/cp; etags -o TAGS.sub *.c *.h --language=none \
|
|
|
|
|
--regex='/DEFTREECODE [(]\([A-Z_]+\)/\1/' cp-tree.def; \
|
|
|
|
|
etags --include TAGS.sub --include ../TAGS.sub
|
|
|
|
|
|
|
|
|
|
c++.man: doc/g++.1
|
|
|
|
|
|
|
|
|
|
c++.srcman: doc/g++.1
|
|
|
|
|
-cp -p $^ $(srcdir)/doc
|
|
|
|
|
|
|
|
|
|
check-c++ : check-g++
|
|
|
|
|
lang_checks += check-g++
|
1999-08-26 09:30:50 +00:00
|
|
|
|
|
|
|
|
|
#
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# Install hooks:
|
|
|
|
|
# cc1plus is installed elsewhere as part of $(COMPILERS).
|
|
|
|
|
|
|
|
|
|
# Nothing to do here.
|
|
|
|
|
c++.install-normal:
|
|
|
|
|
|
|
|
|
|
# Install the driver program as $(target)-g++
|
|
|
|
|
# and also as either g++ (if native) or $(tooldir)/bin/g++.
|
2002-02-01 18:16:02 +00:00
|
|
|
|
c++.install-common: installdirs
|
2004-07-28 03:11:36 +00:00
|
|
|
|
-rm -f $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
|
|
|
|
|
-$(INSTALL_PROGRAM) g++$(exeext) $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
|
|
|
|
|
-chmod a+x $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
|
|
|
|
|
-rm -f $(DESTDIR)$(bindir)/$(CXX_INSTALL_NAME)$(exeext)
|
|
|
|
|
-( cd $(DESTDIR)$(bindir) && \
|
|
|
|
|
$(LN) $(GXX_INSTALL_NAME)$(exeext) $(CXX_INSTALL_NAME)$(exeext) )
|
1996-09-18 05:35:50 +00:00
|
|
|
|
-if [ -f cc1plus$(exeext) ] ; then \
|
|
|
|
|
if [ -f g++-cross$(exeext) ] ; then \
|
2003-02-10 05:41:50 +00:00
|
|
|
|
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
|
|
|
|
|
rm -f $(DESTDIR)$(gcc_tooldir)/bin/g++$(exeext); \
|
|
|
|
|
$(INSTALL_PROGRAM) g++-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/g++$(exeext); \
|
|
|
|
|
rm -f $(DESTDIR)$(gcc_tooldir)/bin/c++$(exeext); \
|
|
|
|
|
( cd $(DESTDIR)$(gcc_tooldir)/bin && \
|
|
|
|
|
$(LN) g++$(exeext) c++$(exeext) ); \
|
2002-02-01 18:16:02 +00:00
|
|
|
|
else true; fi; \
|
1996-09-18 05:35:50 +00:00
|
|
|
|
else \
|
2003-02-10 05:41:50 +00:00
|
|
|
|
rm -f $(DESTDIR)$(bindir)/$(GXX_TARGET_INSTALL_NAME)$(exeext); \
|
|
|
|
|
( cd $(DESTDIR)$(bindir) && \
|
|
|
|
|
$(LN) $(GXX_INSTALL_NAME)$(exeext) $(GXX_TARGET_INSTALL_NAME)$(exeext) ); \
|
|
|
|
|
rm -f $(DESTDIR)$(bindir)/$(CXX_TARGET_INSTALL_NAME)$(exeext); \
|
|
|
|
|
( cd $(DESTDIR)$(bindir) && \
|
|
|
|
|
$(LN) $(CXX_INSTALL_NAME)$(exeext) $(CXX_TARGET_INSTALL_NAME)$(exeext) ); \
|
1999-08-26 09:30:50 +00:00
|
|
|
|
fi ; \
|
1996-09-18 05:35:50 +00:00
|
|
|
|
fi
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
# We can't use links because not everyone supports them, and we can't use
|
|
|
|
|
# .so because Irix 6.5 doesn't support them. So just copy the manpage.
|
|
|
|
|
doc/g++.1: doc/gcc.1
|
|
|
|
|
cp doc/gcc.1 doc/g++.1
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
c++.install-man: installdirs $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext)
|
|
|
|
|
|
|
|
|
|
$(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext): doc/g++.1
|
|
|
|
|
-rm -f $@
|
|
|
|
|
-$(INSTALL_DATA) $< $@
|
|
|
|
|
-chmod a-x $@
|
1996-09-18 05:35:50 +00:00
|
|
|
|
|
|
|
|
|
c++.uninstall:
|
2003-02-10 05:41:50 +00:00
|
|
|
|
-rm -rf $(DESTDIR)$(bindir)/$(CXX_INSTALL_NAME)$(exeext)
|
|
|
|
|
-rm -rf $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
|
|
|
|
|
-rm -rf $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext)
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# Clean hooks:
|
|
|
|
|
# A lot of the ancillary files are deleted by the main makefile.
|
|
|
|
|
# We just have to delete files specific to us.
|
|
|
|
|
|
|
|
|
|
c++.mostlyclean:
|
2004-07-28 03:11:36 +00:00
|
|
|
|
-rm -f doc/g++.1
|
2003-07-11 03:40:53 +00:00
|
|
|
|
-rm -f cp/*$(objext)
|
|
|
|
|
-rm -f cp/*$(coverageexts)
|
1996-09-18 05:35:50 +00:00
|
|
|
|
c++.clean:
|
|
|
|
|
c++.distclean:
|
|
|
|
|
-rm -f cp/config.status cp/Makefile
|
|
|
|
|
c++.maintainer-clean:
|
1999-08-26 09:30:50 +00:00
|
|
|
|
#
|
1996-09-18 05:35:50 +00:00
|
|
|
|
# Stage hooks:
|
|
|
|
|
# The main makefile has already created stage?/cp.
|
|
|
|
|
|
1999-08-26 09:30:50 +00:00
|
|
|
|
c++.stage1: stage1-start
|
1996-09-18 05:35:50 +00:00
|
|
|
|
-mv cp/*$(objext) stage1/cp
|
1999-08-26 09:30:50 +00:00
|
|
|
|
c++.stage2: stage2-start
|
1996-09-18 05:35:50 +00:00
|
|
|
|
-mv cp/*$(objext) stage2/cp
|
1999-08-26 09:30:50 +00:00
|
|
|
|
c++.stage3: stage3-start
|
1996-09-18 05:35:50 +00:00
|
|
|
|
-mv cp/*$(objext) stage3/cp
|
1999-08-26 09:30:50 +00:00
|
|
|
|
c++.stage4: stage4-start
|
1996-09-18 05:35:50 +00:00
|
|
|
|
-mv cp/*$(objext) stage4/cp
|
2004-07-28 03:11:36 +00:00
|
|
|
|
c++.stageprofile: stageprofile-start
|
|
|
|
|
-mv cp/*$(objext) stageprofile/cp
|
|
|
|
|
c++.stagefeedback: stagefeedback-start
|
|
|
|
|
-mv cp/*$(objext) stagefeedback/cp
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
|
|
|
|
#
|
|
|
|
|
# .o: .h dependencies.
|
2004-07-28 03:11:36 +00:00
|
|
|
|
CXX_TREE_H = $(TREE_H) cp/name-lookup.h cp/cp-tree.h c-common.h \
|
|
|
|
|
cp/cp-tree.def c-common.def \
|
|
|
|
|
function.h varray.h $(SYSTEM_H) coretypes.h $(CONFIG_H) $(TARGET_H) \
|
|
|
|
|
$(GGC_H) \
|
2002-02-01 18:16:02 +00:00
|
|
|
|
$(srcdir)/../include/hashtab.h $(srcdir)/../include/splay-tree.h
|
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
CXX_PRETTY_PRINT_H = cp/cxx-pretty-print.h $(C_PRETTY_PRINT_H)
|
|
|
|
|
|
|
|
|
|
cp/lex.o: cp/lex.c $(CXX_TREE_H) $(TM_H) flags.h cp/lex.h \
|
|
|
|
|
c-pragma.h toplev.h output.h input.h cp/operators.def $(TM_P_H)
|
|
|
|
|
cp/cp-lang.o: cp/cp-lang.c $(CXX_TREE_H) $(TM_H) toplev.h langhooks.h \
|
|
|
|
|
$(LANGHOOKS_DEF_H) c-common.h $(CXX_PRETTY_PRINT_H) $(DIAGNOSTIC_H)
|
|
|
|
|
cp/decl.o: cp/decl.c $(CXX_TREE_H) $(TM_H) flags.h cp/lex.h cp/decl.h stack.h \
|
|
|
|
|
output.h $(EXPR_H) except.h toplev.h $(HASHTAB_H) $(RTL_H) \
|
2003-07-11 03:40:53 +00:00
|
|
|
|
cp/operators.def $(TM_P_H) tree-inline.h diagnostic.h c-pragma.h \
|
2004-07-28 03:11:36 +00:00
|
|
|
|
debug.h gt-cp-decl.h gtype-cp.h timevar.h
|
|
|
|
|
cp/decl2.o: cp/decl2.c $(CXX_TREE_H) $(TM_H) flags.h cp/lex.h cp/decl.h $(EXPR_H) \
|
|
|
|
|
output.h except.h toplev.h $(RTL_H) c-common.h gt-cp-decl2.h cgraph.h
|
|
|
|
|
cp/typeck2.o: cp/typeck2.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h output.h $(TM_P_H) \
|
2002-02-01 18:16:02 +00:00
|
|
|
|
diagnostic.h
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/typeck.o: cp/typeck.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) $(EXPR_H) toplev.h \
|
|
|
|
|
diagnostic.h convert.h
|
|
|
|
|
cp/class.o: cp/class.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H) $(TARGET_H) convert.h
|
|
|
|
|
cp/call.o: cp/call.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H) $(EXPR_H) \
|
|
|
|
|
diagnostic.h intl.h gt-cp-call.h convert.h target.h
|
|
|
|
|
cp/friend.o: cp/friend.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) toplev.h $(EXPR_H)
|
|
|
|
|
cp/init.o: cp/init.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) $(EXPR_H) toplev.h \
|
|
|
|
|
except.h
|
|
|
|
|
cp/method.o: cp/method.c $(CXX_TREE_H) $(TM_H) toplev.h $(RTL_H) $(EXPR_H) \
|
|
|
|
|
$(TM_P_H) $(TARGET_H) gt-cp-method.h
|
|
|
|
|
cp/cvt.o: cp/cvt.c $(CXX_TREE_H) $(TM_H) cp/decl.h flags.h toplev.h convert.h
|
|
|
|
|
cp/search.o: cp/search.c $(CXX_TREE_H) $(TM_H) stack.h flags.h toplev.h $(RTL_H)
|
|
|
|
|
cp/tree.o: cp/tree.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H) \
|
2003-07-11 03:40:53 +00:00
|
|
|
|
insn-config.h integrate.h tree-inline.h real.h gt-cp-tree.h $(TARGET_H)
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/ptree.o: cp/ptree.c $(CXX_TREE_H) $(TM_H)
|
|
|
|
|
cp/rtti.o: cp/rtti.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h convert.h
|
|
|
|
|
cp/except.o: cp/except.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) except.h toplev.h \
|
2003-07-11 03:40:53 +00:00
|
|
|
|
cp/cfns.h $(EXPR_H) libfuncs.h tree-inline.h
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/expr.o: cp/expr.c $(CXX_TREE_H) $(TM_H) $(RTL_H) flags.h $(EXPR_H) toplev.h \
|
2002-02-01 18:16:02 +00:00
|
|
|
|
except.h $(TM_P_H)
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/pt.o: cp/pt.c $(CXX_TREE_H) $(TM_H) cp/decl.h cp/lex.h \
|
|
|
|
|
toplev.h $(RTL_H) except.h tree-inline.h gt-cp-pt.h
|
|
|
|
|
cp/error.o: cp/error.c $(CXX_TREE_H) $(TM_H) toplev.h $(DIAGNOSTIC_H) \
|
|
|
|
|
flags.h real.h $(LANGHOOKS_DEF_H) $(CXX_PRETTY_PRINT_H)
|
|
|
|
|
cp/repo.o: cp/repo.c $(CXX_TREE_H) $(TM_H) toplev.h diagnostic.h \
|
2003-07-11 03:40:53 +00:00
|
|
|
|
gt-cp-repo.h
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/semantics.o: cp/semantics.c $(CXX_TREE_H) $(TM_H) cp/lex.h except.h toplev.h \
|
|
|
|
|
flags.h debug.h output.h $(RTL_H) $(TIMEVAR_H) $(EXPR_H) \
|
|
|
|
|
tree-inline.h cgraph.h
|
|
|
|
|
cp/dump.o: cp/dump.c $(CXX_TREE_H) $(TM_H) tree-dump.h
|
|
|
|
|
cp/optimize.o: cp/optimize.c $(CXX_TREE_H) $(TM_H) rtl.h integrate.h insn-config.h \
|
2002-02-01 18:16:02 +00:00
|
|
|
|
input.h $(PARAMS_H) debug.h tree-inline.h
|
2005-06-03 03:28:44 +00:00
|
|
|
|
cp/mangle.o: cp/mangle.c $(CXX_TREE_H) $(TM_H) toplev.h real.h gt-cp-mangle.h \
|
|
|
|
|
$(TARGET_H) $(TM_P_H)
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/parser.o: cp/parser.c $(CXX_TREE_H) $(TM_H) diagnostic.h gt-cp-parser.h output.h
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/name-lookup.o: cp/name-lookup.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
|
|
|
|
|
$(TM_H) $(CXX_TREE_H) timevar.h gt-cp-name-lookup.h toplev.h \
|
|
|
|
|
$(DIAGNOSTIC_H) flags.h
|
2002-02-01 18:16:02 +00:00
|
|
|
|
|
2004-07-28 03:11:36 +00:00
|
|
|
|
cp/cxx-pretty-print.o: cp/cxx-pretty-print.c $(CXX_PRETTY_PRINT_H) \
|
|
|
|
|
$(CONFIG_H) $(SYSTEM_H) $(TM_H) coretypes.h $(CXX_TREE_H)
|