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

Subversion Repositories scarts

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 12 jlechner
# -*- makefile -*-
2
# Top level makefile fragment for GNU gfortran, the GNU Fortran 95 compiler.
3
# Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
4
# Contributed by Paul Brook 
5
# and Steven Bosscher 
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, 51 Franklin Street, Fifth Floor,
22
#Boston, MA 02110-1301, USA.
23
 
24
# This file provides the language dependent support in the main Makefile.
25
# Each language makefile fragment must provide the following targets:
26
#
27
# foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
28
# foo.info
29
# foo.install-normal, foo.install-common, foo.install-info, foo.install-man,
30
# foo.uninstall, foo.distdir,
31
# foo.mostlyclean, foo.clean, foo.distclean, foo.extraclean,
32
# foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
33
#
34
# where `foo' is the name of the language.
35
#
36
# It should also provide rules for:
37
#
38
# - making any compiler driver (eg: gfortran)
39
# - the compiler proper (eg: f951)
40
# - define the names for selecting the language in LANGUAGES.
41
# $(srcdir) must be set to the gcc/ source directory (*not* gcc/fortran/).
42
 
43
# Actual name to use when installing a native compiler.
44
GFORTRAN_INSTALL_NAME := $(shell echo gfortran|sed '$(program_transform_name)')
45
GFORTRAN_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gfortran|sed '$(program_transform_name)')
46
 
47
#^L
48
 
49
# Use strict warnings for this front end.
50
fortran-warn = $(STRICT_WARN)
51
 
52
# These files get warnings from an inline function in GMP saying:
53
# "control may reach end of non-void function '__gmpz_get_ui' being inlined"
54
fortran/expr.o-warn = -Wno-error
55
fortran/resolve.o-warn = -Wno-error
56
fortran/simplify.o-warn = -Wno-error
57
fortran/trans-common.o-warn = -Wno-error
58
 
59
# These are the groups of object files we have.  The F95_PARSER_OBJS are
60
# all the front end files, the F95_OBJS are the files for the translation
61
# from the parse tree to GENERIC
62
 
63
F95_PARSER_OBJS = fortran/arith.o fortran/array.o fortran/bbt.o \
64
    fortran/check.o fortran/data.o fortran/decl.o fortran/dump-parse-tree.o \
65
    fortran/error.o fortran/expr.o fortran/interface.o \
66
    fortran/intrinsic.o fortran/io.o fortran/iresolve.o \
67
    fortran/match.o fortran/matchexp.o fortran/misc.o fortran/module.o \
68
    fortran/options.o fortran/parse.o fortran/primary.o fortran/resolve.o \
69
    fortran/scanner.o fortran/simplify.o fortran/st.o fortran/symbol.o
70
 
71
F95_OBJS = $(F95_PARSER_OBJS) \
72
    fortran/convert.o fortran/dependency.o fortran/f95-lang.o \
73
    fortran/trans.o fortran/trans-array.o fortran/trans-common.o \
74
    fortran/trans-const.o fortran/trans-decl.o fortran/trans-expr.o \
75
    fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-stmt.o \
76
    fortran/trans-types.o
77
 
78
# GFORTRAN uses GMP for its internal arithmetics.
79
F95_LIBS = $(GMPLIBS) $(LIBS)
80
 
81
#
82
# Define the names for selecting gfortran in LANGUAGES.
83
FORTRAN fortran: f951$(exeext)
84
 
85
# Tell GNU make to ignore files by these names if they exist.
86
.PHONY: F95 f95
87
 
88
gfortranspec.o: $(srcdir)/fortran/gfortranspec.c $(SYSTEM_H) $(TM_H) $(GCC_H) $(CONFIG_H)
89
        (SHLIB_LINK='$(SHLIB_LINK)' \
90
        SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
91
        $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
92
                $(INCLUDES) $(srcdir)/fortran/gfortranspec.c)
93
 
94
# Create the compiler driver gfortran.
95
GFORTRAN_D_OBJS = gcc.o gfortranspec.o version.o prefix.o intl.o
96
gfortran$(exeext): $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) $(LIBDEPS)
97
        $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
98
          $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) $(LIBS)
99
 
100
# Create a version of the gfortran driver which calls the cross-compiler.
101
gfortran-cross$(exeext): gfortran$(exeext)
102
        -rm -f gfortran-cross$(exeext)
103
        cp gfortran$(exeext) gfortran-cross$(exeext)
104
 
105
# The compiler itself is called f951.
106
f951$(exeext): $(F95_OBJS) \
107
                $(BACKEND) $(LIBDEPS)
108
        $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
109
                $(F95_OBJS) $(BACKEND) $(F95_LIBS)
110
 
111
gt-fortran-f95-lang.h gtype-fortran.h         : s-gtype; @true
112
gt-fortran-trans-decl.h gt-fortran-trans.h    : s-gtype; @true
113
gt-fortran-trans-io.h gt-fortran-trans-types.h: s-gtype; @true
114
gt-fortran-trans-intrinsic.h                  : s-gtype; @true
115
 
116
#
117
# Build hooks:
118
 
119
fortran.all.build: gfortran$(exeext)
120
fortran.all.cross: gfortran-cross$(exeext)
121
 
122
fortran.start.encap: gfortran$(exeext)
123
fortran.rest.encap:
124
 
125
fortran.srcinfo: doc/gfortran.info
126
        -cp -p $^ $(srcdir)/fortran
127
 
128
fortran.tags: force
129
        cd $(srcdir)/fortran; etags -o TAGS.sub *.c *.h; \
130
        etags --include TAGS.sub --include ../TAGS.sub
131
 
132
fortran.info: doc/gfortran.info
133
dvi:: doc/gfortran.dvi
134
html:: $(htmldir)/gfortran/index.html
135
 
136
F95_MANFILES = doc/gfortran.1
137
 
138
fortran.man: $(F95_MANFILES)
139
 
140
fortran.srcman: $(F95_MANFILES)
141
        -cp -p $^ $(srcdir)/doc
142
 
143
fortran.srcextra:
144
 
145
check-f95 : check-gfortran
146
check-fortran : check-gfortran
147
lang_checks += check-gfortran
148
 
149
# GFORTRAN documentation.
150
GFORTRAN_TEXI = \
151
  $(srcdir)/fortran/gfortran.texi \
152
  $(srcdir)/fortran/invoke.texi \
153
  $(srcdir)/doc/include/fdl.texi \
154
  $(srcdir)/doc/include/gpl.texi \
155
  $(srcdir)/doc/include/funding.texi \
156
  $(srcdir)/doc/include/gcc-common.texi \
157
  gcc-vers.texi
158
 
159
doc/gfortran.info: $(GFORTRAN_TEXI)
160
        if [ x$(BUILD_INFO) = xinfo ]; then \
161
          rm -f doc/gfortran.info-*; \
162
          $(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
163
            -o $@ $<; \
164
        else true; fi
165
 
166
doc/gfortran.dvi: $(GFORTRAN_TEXI)
167
        $(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
168
 
169
$(htmldir)/gfortran/index.html: $(GFORTRAN_TEXI)
170
        $(mkinstalldirs) $(@D)
171
        rm -f $(@D)/*
172
        $(TEXI2HTML) -I $(docdir)/include -I $(srcdir)/fortran -o $(@D) $<
173
 
174
.INTERMEDIATE: gfortran.pod
175
 
176
gfortran.pod: $(GFORTRAN_TEXI)
177
        -$(TEXI2POD) < $(srcdir)/fortran/invoke.texi > $@
178
 
179
#
180
# Install hooks:
181
# f951 is installed elsewhere as part of $(COMPILERS).
182
 
183
# Nothing to do here.
184
fortran.install-normal:
185
 
186
# Install the driver program as $(target)-gfortran
187
# and also as either gfortran (if native) or $(tooldir)/bin/gfortran.
188
fortran.install-common: installdirs
189
        -if [ -f f951$(exeext) ] ; then \
190
          rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
191
          $(INSTALL_PROGRAM) gfortran$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
192
          chmod a+x $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
193
          if [ -f gfortran-cross$(exeext) ] ; then \
194
            if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
195
              rm -f $(DESTDIR)$(gcc_tooldir)/bin/gfortran$(exeext); \
196
              $(INSTALL_PROGRAM) gfortran-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gfortran$(exeext); \
197
            else true; fi; \
198
          else \
199
            rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
200
            $(LN) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
201
          fi ; \
202
        fi
203
 
204
install-info:: $(DESTDIR)$(infodir)/gfortran.info
205
 
206
fortran.install-man: $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
207
 
208
$(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext): doc/gfortran.1 \
209
                installdirs
210
        -rm -f $@
211
        -$(INSTALL_DATA) $< $@
212
        -chmod a-x $@
213
 
214
fortran.uninstall:
215
        if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
216
          echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info"; \
217
          install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info || : ; \
218
        else : ; fi; \
219
        rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
220
        rm -rf $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext); \
221
        rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
222
        rm -rf $(DESTDIR)$(infodir)/gfortran.info*
223
 
224
#
225
# Clean hooks:
226
# A lot of the ancillary files are deleted by the main makefile.
227
# We just have to delete files specific to us.
228
 
229
fortran.mostlyclean:
230
        -rm -f f951$(exeext)
231
        -rm -f fortran/*.o
232
 
233
fortran.clean:
234
fortran.distclean:
235
        -rm -f fortran/config.status fortran/Makefile
236
 
237
fortran.extraclean:
238
fortran.maintainer-clean:
239
        -rm -f doc/gfortran.info* fortran/gfortran.*aux
240
        -rm -f $(docobjdir)/gfortran.1
241
 
242
#
243
# Stage hooks:
244
# The toplevel makefile has already created stage?/fortran at this point.
245
 
246
fortran.stage1: stage1-start
247
        -mv fortran/*$(objext) stage1/fortran
248
fortran.stage2: stage2-start
249
        -mv fortran/*$(objext) stage2/fortran
250
fortran.stage3: stage3-start
251
        -mv fortran/*$(objext) stage3/fortran
252
fortran.stage4: stage4-start
253
        -mv fortran/*$(objext) stage4/fortran
254
fortran.stageprofile: stageprofile-start
255
        -mv fortran/*$(objext) stageprofile/fortran
256
fortran.stagefeedback: stageprofile-start
257
        -mv fortran/*$(objext) stagefeedback/fortran
258
 
259
#
260
# .o: .h dependencies.
261
 
262
# Everything depends on gfortran.h, but only a few files depend on
263
# the other headers.  So at some point we'll have to split out
264
# which objects depend on what.  FIXME
265
# TODO: Add dependencies on the backend/tree header files
266
 
267
$(F95_PARSER_OBJS): fortran/gfortran.h fortran/intrinsic.h fortran/match.h \
268
                fortran/parse.h \
269
                $(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TM_P_H) coretypes.h \
270
                $(RTL_H) $(TREE_H) $(TREE_DUMP_H) $(GGC_H) $(EXPR_H) \
271
                flags.h output.h diagnostic.h errors.h function.h
272
 
273
GFORTRAN_TRANS_DEPS = fortran/gfortran.h fortran/intrinsic.h fortran/trans-array.h \
274
    fortran/trans-const.h fortran/trans-const.h fortran/trans.h \
275
    fortran/trans-stmt.h fortran/trans-types.h \
276
    $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_H) coretypes.h $(GGC_H)
277
 
278
fortran/f95-lang.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
279
  gt-fortran-f95-lang.h gtype-fortran.h cgraph.h $(TARGET_H)
280
fortran/scanner.o: toplev.h
281
fortran/convert.o: $(GFORTRAN_TRANS_DEPS)
282
fortran/trans.o: $(GFORTRAN_TRANS_DEPS)
283
fortran/trans-decl.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-decl.h \
284
  cgraph.h $(TARGET_H) function.h $(FLAGS_H) tree-gimple.h \
285
  tree-dump.h
286
fortran/trans-types.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-types.h \
287
  real.h toplev.h $(TARGET_H)
288
fortran/trans-const.o: $(GFORTRAN_TRANS_DEPS)
289
fortran/trans-expr.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
290
fortran/trans-stmt.o: $(GFORTRAN_TRANS_DEPS)
291
fortran/trans-io.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-io.h \
292
  fortran/ioparm.def
293
fortran/trans-array.o: $(GFORTRAN_TRANS_DEPS)
294
fortran/trans-intrinsic.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
295
  gt-fortran-trans-intrinsic.h
296
fortran/dependency.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
297
fortran/trans-common.o: $(GFORTRAN_TRANS_DEPS)
298
 

powered by: WebSVN 2.1.0

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