OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [cp/] [Make-lang.in] - Blame information for rev 20

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 12 jlechner
# Top level -*- makefile -*- fragment for GNU C++.
2
#   Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3
#   2005
4
#   Free Software Foundation, Inc.
5
 
6
#This file is part of GCC.
7
 
8
#GCC is free software; you can redistribute it and/or modify
9
#it under the terms of the GNU General Public License as published by
10
#the Free Software Foundation; either version 2, or (at your option)
11
#any later version.
12
 
13
#GCC is distributed in the hope that it will be useful,
14
#but WITHOUT ANY WARRANTY; without even the implied warranty of
15
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
#GNU General Public License for more details.
17
 
18
#You should have received a copy of the GNU General Public License
19
#along with GCC; see the file COPYING.  If not, write to
20
#the Free Software Foundation, 51 Franklin Street, Fifth Floor,
21
#Boston, MA 02110-1301, USA.
22
 
23
# This file provides the language dependent support in the main Makefile.
24
# Each language makefile fragment must provide the following targets:
25
#
26
# foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
27
# foo.install-normal, foo.install-common, foo.install-man,
28
# foo.uninstall,
29
# foo.mostlyclean, foo.clean, foo.distclean,
30
# foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
31
#
32
# where `foo' is the name of the language.
33
#
34
# It should also provide rules for:
35
#
36
# - making any compiler driver (eg: g++)
37
# - the compiler proper (eg: cc1plus)
38
# - define the names for selecting the language in LANGUAGES.
39
 
40
# Actual names to use when installing a native compiler.
41
CXX_INSTALL_NAME := $(shell echo c++|sed '$(program_transform_name)')
42
GXX_INSTALL_NAME := $(shell echo g++|sed '$(program_transform_name)')
43
CXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo c++|sed '$(program_transform_name)')
44
GXX_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo g++|sed '$(program_transform_name)')
45
 
46
#
47
# Define the names for selecting c++ in LANGUAGES.
48
# Note that it would be nice to move the dependency on g++
49
# into the C++ rule, but that needs a little bit of work
50
# to do the right thing within all.cross.
51
C++ c++: cc1plus$(exeext)
52
 
53
# Tell GNU make to ignore these if they exist.
54
.PHONY: C++ c++
55
 
56
g++spec.o: $(srcdir)/cp/g++spec.c $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H) $(CONFIG_H)
57
        (SHLIB_LINK='$(SHLIB_LINK)' \
58
        SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
59
        $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
60
                $(INCLUDES) $(srcdir)/cp/g++spec.c)
61
 
62
# Create the compiler driver for g++.
63
GXX_OBJS = gcc.o g++spec.o intl.o prefix.o version.o
64
g++$(exeext): $(GXX_OBJS) $(EXTRA_GCC_OBJS) $(LIBDEPS)
65
        $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
66
          $(GXX_OBJS) $(EXTRA_GCC_OBJS) $(LIBS)
67
 
68
# Create a version of the g++ driver which calls the cross-compiler.
69
g++-cross$(exeext): g++$(exeext)
70
        -rm -f g++-cross$(exeext)
71
        cp g++$(exeext) g++-cross$(exeext)
72
 
73
# The compiler itself.
74
# Shared with C front end:
75
CXX_C_OBJS = attribs.o c-common.o c-format.o c-pragma.o c-semantics.o c-lex.o \
76
        c-dump.o $(CXX_TARGET_OBJS) c-pretty-print.o c-opts.o c-pch.o \
77
        c-incpath.o cppdefault.o c-ppoutput.o c-cppbuiltin.o prefix.o \
78
        c-gimplify.o tree-inline.o
79
 
80
# Language-specific object files for C++ and Objective C++.
81
CXX_AND_OBJCXX_OBJS = cp/call.o cp/decl.o cp/expr.o cp/pt.o cp/typeck2.o \
82
 cp/class.o cp/decl2.o cp/error.o cp/lex.o cp/parser.o cp/ptree.o cp/rtti.o \
83
 cp/typeck.o cp/cvt.o cp/except.o cp/friend.o cp/init.o cp/method.o \
84
 cp/search.o cp/semantics.o cp/tree.o cp/repo.o cp/dump.o cp/optimize.o \
85
 cp/mangle.o cp/cp-objcp-common.o cp/name-lookup.o cp/cxx-pretty-print.o \
86
 cp/cp-gimplify.o tree-mudflap.o $(CXX_C_OBJS)
87
 
88
# Language-specific object files for C++.
89
CXX_OBJS = cp/cp-lang.o stub-objc.o $(CXX_AND_OBJCXX_OBJS)
90
 
91
# Use strict warnings for this front end.
92
cp-warn = $(STRICT_WARN)
93
 
94
cc1plus-dummy$(exeext): $(CXX_OBJS) dummy-checksum.o $(BACKEND) $(LIBDEPS)
95
        $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
96
              $(CXX_OBJS) dummy-checksum.o $(BACKEND) $(LIBS)
97
 
98
cc1plus-checksum.c : cc1plus-dummy$(exeext) build/genchecksum$(build_exeext)
99
        build/genchecksum$(build_exeext) cc1plus-dummy$(exeext) > $@
100
 
101
cc1plus-checksum.o : cc1plus-checksum.c
102
 
103
cc1plus$(exeext): $(CXX_OBJS) cc1plus-checksum.o $(BACKEND) $(LIBDEPS)
104
        $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
105
              $(CXX_OBJS) cc1plus-checksum.o $(BACKEND) $(LIBS)
106
 
107
# Special build rules.
108
$(srcdir)/cp/cfns.h: $(srcdir)/cp/cfns.gperf
109
        gperf -o -C -E -k '1-6,$$' -j1 -D -N 'libc_name_p' -L ANSI-C \
110
                $(srcdir)/cp/cfns.gperf > $(srcdir)/cp/cfns.h
111
 
112
gtype-cp.h gt-cp-call.h gt-cp-decl.h gt-cp-decl2.h : s-gtype; @true
113
gt-cp-pt.h gt-cp-repo.h gt-cp-parser.h gt-cp-method.h : s-gtype; @true
114
gt-cp-tree.h gt-cp-mangle.h gt-cp-name-lookup.h gt-cp-typeck2.h: s-gtype; @true
115
gt-cp-rtti.h gt-cp-cp-objcp-common.h: s-gtype ; @true
116
 
117
#
118
# Build hooks:
119
 
120
c++.all.build: g++$(exeext)
121
c++.all.cross: g++-cross$(exeext)
122
c++.start.encap: g++$(exeext)
123
c++.rest.encap:
124
c++.info:
125
c++.srcinfo:
126
c++.srcextra:
127
 
128
c++.tags: force
129
        cd $(srcdir)/cp; etags -o TAGS.sub *.c *.h --language=none \
130
          --regex='/DEFTREECODE [(]\([A-Z_]+\)/\1/' cp-tree.def; \
131
        etags --include TAGS.sub --include ../TAGS.sub
132
 
133
c++.man: doc/g++.1
134
 
135
c++.srcman: doc/g++.1
136
        -cp -p $^ $(srcdir)/doc
137
 
138
# 'make check' in gcc/ looks for check-c++, as do all toplevel C++-related
139
# check targets.  However, our DejaGNU framework requires 'check-g++' as its
140
# entry point.  We feed the former to the latter here.
141
check-c++ : check-g++
142
# List of targets that can use the generic check- rule and its // variant.
143
lang_checks += check-g++
144
 
145
#
146
# Install hooks:
147
# cc1plus is installed elsewhere as part of $(COMPILERS).
148
 
149
# Nothing to do here.
150
c++.install-normal:
151
 
152
# Install the driver program as $(target)-g++
153
# and also as either g++ (if native) or $(tooldir)/bin/g++.
154
c++.install-common: installdirs
155
        -rm -f $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
156
        -$(INSTALL_PROGRAM) g++$(exeext) $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
157
        -chmod a+x $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
158
        -rm -f $(DESTDIR)$(bindir)/$(CXX_INSTALL_NAME)$(exeext)
159
        -( cd $(DESTDIR)$(bindir) && \
160
              $(LN) $(GXX_INSTALL_NAME)$(exeext) $(CXX_INSTALL_NAME)$(exeext) )
161
        -if [ -f cc1plus$(exeext) ] ; then \
162
          if [ -f g++-cross$(exeext) ] ; then \
163
            if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
164
              rm -f $(DESTDIR)$(gcc_tooldir)/bin/g++$(exeext); \
165
              $(INSTALL_PROGRAM) g++-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/g++$(exeext); \
166
              rm -f $(DESTDIR)$(gcc_tooldir)/bin/c++$(exeext); \
167
              ( cd $(DESTDIR)$(gcc_tooldir)/bin && \
168
                $(LN) g++$(exeext) c++$(exeext) ); \
169
            else true; fi; \
170
          else \
171
            rm -f $(DESTDIR)$(bindir)/$(GXX_TARGET_INSTALL_NAME)$(exeext); \
172
            ( cd $(DESTDIR)$(bindir) && \
173
              $(LN) $(GXX_INSTALL_NAME)$(exeext) $(GXX_TARGET_INSTALL_NAME)$(exeext) ); \
174
            rm -f $(DESTDIR)$(bindir)/$(CXX_TARGET_INSTALL_NAME)$(exeext); \
175
            ( cd $(DESTDIR)$(bindir) && \
176
              $(LN) $(CXX_INSTALL_NAME)$(exeext) $(CXX_TARGET_INSTALL_NAME)$(exeext) ); \
177
          fi ; \
178
        fi
179
 
180
# We can't use links because not everyone supports them, and we can't use
181
# .so because Irix 6.5 doesn't support them.  So just copy the manpage.
182
doc/g++.1: doc/gcc.1
183
        cp doc/gcc.1 doc/g++.1
184
 
185
c++.install-man: $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext)
186
 
187
$(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext): doc/g++.1 installdirs
188
        -rm -f $@
189
        -$(INSTALL_DATA) $< $@
190
        -chmod a-x $@
191
 
192
c++.uninstall:
193
        -rm -rf $(DESTDIR)$(bindir)/$(CXX_INSTALL_NAME)$(exeext)
194
        -rm -rf $(DESTDIR)$(bindir)/$(GXX_INSTALL_NAME)$(exeext)
195
        -rm -rf $(DESTDIR)$(man1dir)/$(GXX_INSTALL_NAME)$(man1ext)
196
#
197
# Clean hooks:
198
# A lot of the ancillary files are deleted by the main makefile.
199
# We just have to delete files specific to us.
200
 
201
c++.mostlyclean:
202
        -rm -f doc/g++.1
203
        -rm -f cp/*$(objext)
204
        -rm -f cp/*$(coverageexts)
205
c++.clean:
206
c++.distclean:
207
        -rm -f cp/config.status cp/Makefile
208
c++.maintainer-clean:
209
#
210
# Stage hooks:
211
# The main makefile has already created stage?/cp.
212
 
213
c++.stage1: stage1-start
214
        -mv cp/*$(objext) stage1/cp
215
c++.stage2: stage2-start
216
        -mv cp/*$(objext) stage2/cp
217
c++.stage3: stage3-start
218
        -mv cp/*$(objext) stage3/cp
219
c++.stage4: stage4-start
220
        -mv cp/*$(objext) stage4/cp
221
c++.stageprofile: stageprofile-start
222
        -mv cp/*$(objext) stageprofile/cp
223
c++.stagefeedback: stagefeedback-start
224
        -mv cp/*$(objext) stagefeedback/cp
225
 
226
#
227
# .o: .h dependencies.
228
CXX_TREE_H = $(TREE_H) cp/name-lookup.h cp/cp-tree.h c-common.h \
229
        cp/cp-tree.def c-common.def \
230
        function.h varray.h $(SYSTEM_H) coretypes.h $(CONFIG_H) $(TARGET_H) \
231
        $(GGC_H) \
232
        $(srcdir)/../include/hashtab.h $(srcdir)/../include/splay-tree.h
233
 
234
CXX_PRETTY_PRINT_H = cp/cxx-pretty-print.h $(C_PRETTY_PRINT_H)
235
 
236
cp/lex.o: cp/lex.c $(CXX_TREE_H) $(TM_H) flags.h \
237
  c-pragma.h toplev.h output.h input.h cp/operators.def $(TM_P_H)
238
cp/cp-lang.o: cp/cp-lang.c $(CXX_TREE_H) $(TM_H) toplev.h debug.h langhooks.h \
239
  $(LANGHOOKS_DEF_H) c-common.h gtype-cp.h \
240
  $(DIAGNOSTIC_H) cp/cp-objcp-common.h
241
cp/decl.o: cp/decl.c $(CXX_TREE_H) $(TM_H) flags.h cp/decl.h \
242
  output.h $(EXPR_H) except.h toplev.h $(HASHTAB_H) $(RTL_H) \
243
  cp/operators.def $(TM_P_H) tree-inline.h diagnostic.h c-pragma.h \
244
  debug.h gt-cp-decl.h timevar.h $(TREE_FLOW_H)
245
cp/decl2.o: cp/decl2.c $(CXX_TREE_H) $(TM_H) flags.h cp/decl.h $(EXPR_H) \
246
  output.h except.h toplev.h $(RTL_H) c-common.h gt-cp-decl2.h cgraph.h \
247
  c-pragma.h $(TREE_DUMP_H) intl.h
248
cp/cp-objcp-common.o : cp/cp-objcp-common.c $(CONFIG_H) $(SYSTEM_H) \
249
  coretypes.h $(TM_H) $(TREE_H) $(CXX_TREE_H) c-common.h toplev.h langhooks.h \
250
  $(LANGHOOKS_DEF_H) $(DIAGNOSTIC_H) debug.h $(CXX_PRETTY_PRINT_H) \
251
  cp/cp-objcp-common.h gt-cp-cp-objcp-common.h
252
cp/typeck2.o: cp/typeck2.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h output.h \
253
  $(TM_P_H) diagnostic.h gt-cp-typeck2.h
254
cp/typeck.o: cp/typeck.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) $(EXPR_H) \
255
  toplev.h diagnostic.h convert.h c-common.h
256
cp/class.o: cp/class.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H) \
257
  $(TARGET_H) convert.h $(CGRAPH_H) $(TREE_DUMP_H)
258
cp/call.o: cp/call.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H) \
259
  $(EXPR_H) diagnostic.h intl.h gt-cp-call.h convert.h target.h
260
cp/friend.o: cp/friend.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) toplev.h \
261
  $(EXPR_H)
262
cp/init.o: cp/init.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) $(EXPR_H) \
263
  toplev.h except.h $(TARGET_H)
264
cp/method.o: cp/method.c $(CXX_TREE_H) $(TM_H) toplev.h $(RTL_H) $(EXPR_H) \
265
  $(TM_P_H) $(TARGET_H) diagnostic.h gt-cp-method.h
266
cp/cvt.o: cp/cvt.c $(CXX_TREE_H) $(TM_H) cp/decl.h flags.h toplev.h convert.h
267
cp/search.o: cp/search.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H)
268
cp/tree.o: cp/tree.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h $(RTL_H) \
269
  insn-config.h integrate.h tree-inline.h real.h gt-cp-tree.h $(TARGET_H) \
270
  debug.h
271
cp/ptree.o: cp/ptree.c $(CXX_TREE_H) $(TM_H)
272
cp/rtti.o: cp/rtti.c $(CXX_TREE_H) $(TM_H) flags.h toplev.h convert.h \
273
  gt-cp-rtti.h
274
cp/except.o: cp/except.c $(CXX_TREE_H) $(TM_H) flags.h $(RTL_H) except.h \
275
  toplev.h cp/cfns.h $(EXPR_H) libfuncs.h tree-inline.h $(TARGET_H)
276
cp/expr.o: cp/expr.c $(CXX_TREE_H) $(TM_H) $(RTL_H) flags.h $(EXPR_H) \
277
  toplev.h except.h $(TM_P_H)
278
cp/pt.o: cp/pt.c $(CXX_TREE_H) $(TM_H) cp/decl.h cp/cp-objcp-common.h \
279
  toplev.h $(RTL_H) except.h tree-inline.h pointer-set.h gt-cp-pt.h
280
cp/error.o: cp/error.c $(CXX_TREE_H) $(TM_H) toplev.h $(DIAGNOSTIC_H) \
281
  flags.h real.h $(LANGHOOKS_DEF_H) $(CXX_PRETTY_PRINT_H)
282
cp/repo.o: cp/repo.c $(CXX_TREE_H) $(TM_H) toplev.h diagnostic.h \
283
  gt-cp-repo.h
284
cp/semantics.o: cp/semantics.c $(CXX_TREE_H) $(TM_H) except.h toplev.h \
285
  flags.h debug.h output.h $(RTL_H) $(TIMEVAR_H) $(EXPR_H) \
286
  tree-inline.h cgraph.h $(TARGET_H) c-common.h
287
cp/dump.o: cp/dump.c $(CXX_TREE_H) $(TM_H) tree-dump.h
288
cp/optimize.o: cp/optimize.c $(CXX_TREE_H) $(TM_H) rtl.h integrate.h \
289
  insn-config.h input.h $(PARAMS_H) debug.h tree-inline.h tree-gimple.h \
290
  $(TARGET_H)
291
cp/mangle.o: cp/mangle.c $(CXX_TREE_H) $(TM_H) toplev.h real.h gt-cp-mangle.h \
292
  $(TARGET_H) $(TM_P_H)
293
cp/parser.o: cp/parser.c $(CXX_TREE_H) $(TM_H) diagnostic.h gt-cp-parser.h \
294
  output.h
295
cp/cp-gimplify.o: cp/cp-gimplify.c $(CXX_TREE_H) toplev.h c-common.h \
296
        $(TM_H) coretypes.h pointer-set.h
297
 
298
cp/name-lookup.o: cp/name-lookup.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
299
        $(TM_H) $(CXX_TREE_H) timevar.h gt-cp-name-lookup.h toplev.h \
300
        $(DIAGNOSTIC_H) flags.h debug.h
301
 
302
cp/cxx-pretty-print.o: cp/cxx-pretty-print.c $(CXX_PRETTY_PRINT_H) \
303
  $(CONFIG_H) $(SYSTEM_H) $(TM_H) coretypes.h $(CXX_TREE_H)

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.