aboutsummaryrefslogtreecommitdiff
path: root/gcc/f/Makefile.in
blob: ccc1ed095d69840d4ea0e05ef109c9b630362b09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
# Makefile for GNU F77 compiler.
#   Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc.

#This file is part of GNU Fortran.

#GNU Fortran is free software; you can redistribute it and/or modify
#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.

#GNU Fortran is distributed in the hope that it will be useful,
#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
#along with GNU Fortran; see the file COPYING.  If not, write to
#the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#02111-1307, USA.

# The makefile built from this file lives in the language subdirectory.
# Its purpose is to provide support for:
#
# 1) recursion where necessary, and only then (building .o's), and
# 2) building and debugging f771 from the language subdirectory, and
# 3) nothing else.
#
# The parent makefile handles all other chores, with help from the
# language makefile fragment, of course.
#
# The targets for external use are:
# all, TAGS, ???mostlyclean, ???clean.

# Suppress smart makes who think they know how to automake Yacc files
.y.c:

# Variables that exist for you to override.
# See below for how to change them for certain systems.

# Various ways of specifying flags for compilations:
# CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
# BOOT_CFLAGS is the value of CFLAGS to pass
# to the stage2 and stage3 compilations
# XCFLAGS is used for most compilations but not when using the GCC just built.
XCFLAGS =
CFLAGS = -g
BOOT_CFLAGS = -O $(CFLAGS)
# These exists to be overridden by the x-* and t-* files, respectively.
X_CFLAGS =
T_CFLAGS =

X_CPPFLAGS =
T_CPPFLAGS =

CC = @CC@
BISON = bison
BISONFLAGS =
LEX = flex
LEXFLAGS =
AR = ar
AR_FLAGS = rc
SHELL = /bin/sh
MAKEINFO = makeinfo
TEXI2DVI = texi2dvi

# Define this as & to perform parallel make on a Sequent.
# Note that this has some bugs, and it seems currently necessary
# to compile all the gen* files first by hand to avoid erroneous results.
P =

# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
# It omits XCFLAGS, and specifies -B./.
# It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)

# Tools to use when building a cross-compiler.
# These are used because `configure' appends `cross-make'
# to the makefile when making a cross-compiler.

target=@target@
xmake_file=@dep_host_xmake_file@
tmake_file=@dep_tmake_file@

# Directory where sources are, from where we are.
srcdir = @srcdir@
VPATH = @srcdir@

# Additional system libraries to link with.
CLIB=

# Top build directory, relative to here.
top_builddir = ..

# Internationalization library.
INTLLIBS = @INTLLIBS@

# Choose the real default target.
ALL=all

# End of variables for you to override.

# Definition of `all' is here so that new rules inserted by sed
# do not specify the default target.
all: all.indirect

# This tells GNU Make version 3 not to put all variables in the environment.
.NOEXPORT:

# sed inserts variable overrides after the following line.
####target overrides
@target_overrides@
####host overrides
@host_overrides@
####cross overrides
@cross_defines@
@cross_overrides@
####build overrides
@build_overrides@
#
# Now figure out from those variables how to compile and link.

all.indirect: Makefile ../f771$(exeext)

# IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@

# This is the variable actually used when we compile.
ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) -W -Wall

# Likewise.
ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)

# This is where we get libiberty.a from.
LIBIBERTY = ../../libiberty/libiberty.a

# We should be compiling with the built compiler, for which
# BOOT_LDFLAGS is appropriate.  (Formerly we had a separate
# F771_LDFLAGS, but the ld flags can be taken care of by the target
# configuration files in egcs.)
LDFLAGS=$(BOOT_LDFLAGS)

# How to link with both our special library facilities
# and the system's installed libraries.
LIBS = $(LIBIBERTY) $(CLIB) $(INTLLIBS)
LIBDEPS = $(INTLLIBS) $(LIBIBERTY)

# Specify the directories to be searched for header files.
# Both . and srcdir are used, in that order,
# so that tm.h and config.h will be found in the compilation
# subdirectory rather than in the source directory.
INCLUDES = -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config -I$(srcdir)/../../include

# Always use -I$(srcdir)/config when compiling.
.c.o:
	$(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<

#
# Lists of files for various purposes.

# Language-specific object files for g77

F77_OBJS = \
 bad.o \
 bit.o \
 bld.o \
 com.o \
 data.o \
 equiv.o \
 expr.o \
 global.o \
 implic.o \
 info.o \
 intrin.o \
 lab.o \
 lex.o \
 malloc.o \
 name.o \
 parse.o \
 proj.o \
 src.o \
 st.o \
 sta.o \
 stb.o \
 stc.o \
 std.o \
 ste.o \
 storag.o \
 stp.o \
 str.o \
 sts.o \
 stt.o \
 stu.o \
 stv.o \
 stw.o \
 symbol.o \
 target.o \
 top.o \
 type.o \
 version.o \
 where.o

# Language-independent object files.
BACKEND = ../toplev.o ../libbackend.a

compiler: ../f771$(exeext)
../f771$(exeext): $(P) $(F77_OBJS) $(BACKEND) $(LIBDEPS)
	rm -f f771$(exeext)
	$(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(F77_OBJS) $(BACKEND) $(LIBS)

Makefile: $(srcdir)/Makefile.in $(srcdir)/../configure
	cd ..; $(SHELL) config.status

native: config.status ../f771$(exeext)
#
# Compiling object files from source files.

# Note that dependencies on obstack.h are not written
# because that file is not part of GCC.

# F77 language-specific files.

# These macros expand to the corresponding gcc-source files involved
# (each file itself, plus whatever files on which it depends, but
# without including stuff resulting from configuration, since we can't
# guess at that).  The files that live in a distclean'd gcc source
# directory have "$(srcdir)/" prefixes, while the others don't because
# they'll be created only in the build directory.
ASSERT_H = $(srcdir)/../assert.h
CONFIG_H = ../config.h
CONVERT_H = $(srcdir)/../convert.h
FLAGS_H = $(srcdir)/../flags.h
GGC_H = $(srcdir)/../ggc.h $(srcdir)/../varray.h
GLIMITS_H = $(srcdir)/../glimits.h
HCONFIG_H = ../hconfig.h
INPUT_H = $(srcdir)/../input.h
OUTPUT_H = $(srcdir)/../output.h
RTL_H = $(srcdir)/../rtl.h $(srcdir)/../rtl.def \
	$(srcdir)/../machmode.h $(srcdir)/../machmode.def
SYSTEM_H = $(srcdir)/../system.h
TOPLEV_H = $(srcdir)/../toplev.h
TREE_H = $(srcdir)/../tree.h $(srcdir)/../real.h \
	$(srcdir)/../tree.def $(srcdir)/../machmode.h $(srcdir)/../machmode.def
DEFAULTS_H = $(srcdir)/../defaults.h

ansify.o: ansify.c $(HCONFIG_H) $(SYSTEM_H) $(ASSERT_H)
bad.o: bad.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) bad.h bad.def where.h \
 $(GLIMITS_H) top.h malloc.h $(FLAGS_H) com.h com-rt.def $(TREE_H) bld.h \
 bld-op.def bit.h info.h info-b.def info-k.def info-w.def target.h \
 lex.h type.h intrin.h intrin.def lab.h symbol.h symbol.def equiv.h \
 storag.h global.h name.h $(TOPLEV_H)
bit.o: bit.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) $(GLIMITS_H) bit.h \
 malloc.h
bld.o: bld.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) bld.h bld-op.def bit.h \
 malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h lab.h storag.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def
com.o: com.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) $(FLAGS_H) $(RTL_H) \
 $(TREE_H) $(OUTPUT_H) $(CONVERT_H) com.h com-rt.def bld.h bld-op.def bit.h \
 malloc.h info.h info-b.def info-k.def info-w.def target.h bad.h \
 bad.def where.h $(GLIMITS_H) top.h lex.h type.h intrin.h intrin.def \
 lab.h symbol.h symbol.def equiv.h storag.h global.h name.h expr.h \
 implic.h src.h st.h $(GGC_H) $(TOPLEV_H) $(DEFAULTS_H)
data.o: data.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) data.h bld.h \
 bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def \
 info-k.def info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h \
 lex.h type.h lab.h storag.h symbol.h symbol.def equiv.h global.h \
 name.h intrin.h intrin.def expr.h st.h
equiv.o: equiv.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) equiv.h bld.h \
 bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def \
 info-k.def info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h \
 lex.h type.h lab.h storag.h symbol.h symbol.def global.h name.h \
 intrin.h intrin.def data.h
expr.o: expr.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) expr.h bld.h \
 bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def \
 info-k.def info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h \
 lex.h type.h lab.h storag.h symbol.h symbol.def equiv.h global.h \
 name.h intrin.h intrin.def implic.h src.h st.h stamp-str
fini.o: fini.c proj.h $(HCONFIG_H) $(SYSTEM_H) $(ASSERT_H) malloc.h
global.o: global.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) global.h info.h \
 info-b.def info-k.def info-w.def target.h $(TREE_H) bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h lex.h type.h name.h symbol.h \
 symbol.def bld.h bld-op.def bit.h com.h com-rt.def lab.h storag.h \
 intrin.h intrin.def equiv.h
implic.o: implic.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) implic.h info.h \
 info-b.def info-k.def info-w.def target.h $(TREE_H) bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h lex.h type.h symbol.h symbol.def \
 bld.h bld-op.def bit.h com.h com-rt.def lab.h storag.h intrin.h \
 intrin.def equiv.h global.h name.h src.h
info.o: info.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) info.h info-b.def \
 info-k.def info-w.def target.h $(TREE_H) bad.h bad.def where.h $(GLIMITS_H) \
 top.h malloc.h lex.h type.h
intdoc.o: intdoc.c $(HCONFIG_H) $(SYSTEM_H) $(ASSERT_H) intrin.h intrin.def \
 intdoc.h0 intdoc.h0
intrin.o: intrin.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) intrin.h \
 intrin.def bld.h bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) \
 info.h info-b.def info-k.def info-w.def target.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h lex.h type.h lab.h storag.h symbol.h \
 symbol.def equiv.h global.h name.h expr.h src.h
lab.o: lab.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) lab.h com.h com-rt.def \
 $(TREE_H) bld.h bld-op.def bit.h malloc.h info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h intrin.h intrin.def symbol.h symbol.def equiv.h storag.h \
 global.h name.h
lex.o: lex.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) top.h malloc.h where.h \
 $(GLIMITS_H) bad.h bad.def com.h com-rt.def $(TREE_H) bld.h bld-op.def \
 bit.h info.h info-b.def info-k.def info-w.def target.h lex.h type.h \
 intrin.h intrin.def lab.h symbol.h symbol.def equiv.h storag.h \
 global.h name.h src.h $(FLAGS_H) $(INPUT_H) $(TOPLEV_H) $(OUTPUT_H) $(GGC_H)
malloc.o: malloc.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) malloc.h
name.o: name.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) bad.h bad.def where.h \
 $(GLIMITS_H) top.h malloc.h name.h global.h info.h info-b.def info-k.def \
 info-w.def target.h $(TREE_H) lex.h type.h symbol.h symbol.def bld.h \
 bld-op.def bit.h com.h com-rt.def lab.h storag.h intrin.h intrin.def \
 equiv.h src.h
parse.o: parse.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) top.h malloc.h \
 where.h $(GLIMITS_H) com.h com-rt.def $(TREE_H) bld.h bld-op.def bit.h \
 info.h info-b.def info-k.def info-w.def target.h bad.h bad.def lex.h \
 type.h intrin.h intrin.def lab.h symbol.h symbol.def equiv.h storag.h \
 global.h name.h version.h $(FLAGS_H)
proj.o: proj.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) $(GLIMITS_H)
src.o: src.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) src.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h
st.o: st.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) st.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h lex.h symbol.h symbol.def bld.h \
 bld-op.def bit.h com.h com-rt.def $(TREE_H) info.h info-b.def info-k.def \
 info-w.def target.h type.h lab.h storag.h intrin.h intrin.def equiv.h \
 global.h name.h sta.h stamp-str stb.h expr.h stp.h stt.h stc.h std.h \
 stv.h stw.h ste.h sts.h stu.h
sta.o: sta.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) sta.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h lex.h stamp-str symbol.h symbol.def \
 bld.h bld-op.def bit.h com.h com-rt.def $(TREE_H) info.h info-b.def \
 info-k.def info-w.def target.h type.h lab.h storag.h intrin.h \
 intrin.def equiv.h global.h name.h implic.h stb.h expr.h stp.h stt.h \
 stc.h std.h stv.h stw.h
stb.o: stb.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) stb.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h expr.h bld.h bld-op.def bit.h com.h \
 com-rt.def $(TREE_H) info.h info-b.def info-k.def info-w.def target.h \
 lex.h type.h lab.h storag.h symbol.h symbol.def equiv.h global.h \
 name.h intrin.h intrin.def stp.h stt.h stamp-str src.h sta.h stc.h
stc.o: stc.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) stc.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h bld.h bld-op.def bit.h com.h \
 com-rt.def $(TREE_H) info.h info-b.def info-k.def info-w.def target.h \
 lex.h type.h lab.h storag.h symbol.h symbol.def equiv.h global.h \
 name.h intrin.h intrin.def expr.h stp.h stt.h stamp-str data.h implic.h \
 src.h sta.h std.h stv.h stw.h
std.o: std.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) std.h bld.h bld-op.def \
 bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h lab.h storag.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def stp.h stt.h stamp-str stv.h stw.h sta.h ste.h sts.h
ste.o: ste.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) $(RTL_H) $(TOPLEV_H) ste.h \
 bld.h bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) info.h \
 info-b.def info-k.def info-w.def target.h bad.h bad.def where.h \
 $(GLIMITS_H) top.h lex.h type.h lab.h storag.h symbol.h symbol.def \
 equiv.h global.h name.h intrin.h intrin.def stp.h stt.h stamp-str sts.h \
 stv.h stw.h expr.h sta.h $(GGC_H)
storag.o: storag.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) storag.h bld.h \
 bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def \
 info-k.def info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h \
 lex.h type.h lab.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def data.h
stp.o: stp.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) stp.h bld.h bld-op.def \
 bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h lab.h storag.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def stt.h
str.o: str.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) src.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h malloc.h stamp-str lex.h
sts.o: sts.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) sts.h malloc.h com.h \
 com-rt.def $(TREE_H) bld.h bld-op.def bit.h info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h intrin.h intrin.def lab.h symbol.h symbol.def equiv.h storag.h \
 global.h name.h
stt.o: stt.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) stt.h top.h malloc.h \
 where.h $(GLIMITS_H) bld.h bld-op.def bit.h com.h com-rt.def $(TREE_H) \
 info.h info-b.def info-k.def info-w.def target.h bad.h bad.def lex.h \
 type.h lab.h storag.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def stp.h expr.h sta.h stamp-str
stu.o: stu.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) bld.h bld-op.def bit.h \
 malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h lab.h storag.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def implic.h stu.h sta.h stamp-str
stv.o: stv.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) stv.h lab.h com.h \
 com-rt.def $(TREE_H) bld.h bld-op.def bit.h malloc.h info.h info-b.def \
 info-k.def info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h \
 lex.h type.h intrin.h intrin.def symbol.h symbol.def equiv.h storag.h \
 global.h name.h
stw.o: stw.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) stw.h bld.h bld-op.def \
 bit.h malloc.h com.h com-rt.def $(TREE_H) info.h info-b.def info-k.def \
 info-w.def target.h bad.h bad.def where.h $(GLIMITS_H) top.h lex.h \
 type.h lab.h storag.h symbol.h symbol.def equiv.h global.h name.h \
 intrin.h intrin.def stv.h sta.h stamp-str
symbol.o: symbol.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) symbol.h \
 symbol.def bld.h bld-op.def bit.h malloc.h com.h com-rt.def $(TREE_H) \
 info.h info-b.def info-k.def info-w.def target.h bad.h bad.def \
 where.h $(GLIMITS_H) top.h lex.h type.h lab.h storag.h intrin.h \
 intrin.def equiv.h global.h name.h src.h st.h
target.o: target.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) $(GLIMITS_H) \
 target.h $(TREE_H) bad.h bad.def where.h top.h malloc.h info.h \
 info-b.def info-k.def info-w.def type.h lex.h
top.o: top.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) top.h malloc.h where.h \
 $(GLIMITS_H) bad.h bad.def bit.h bld.h bld-op.def com.h com-rt.def \
 $(TREE_H) info.h info-b.def info-k.def info-w.def target.h lex.h type.h \
 lab.h storag.h symbol.h symbol.def equiv.h global.h name.h intrin.h \
 intrin.def data.h expr.h implic.h src.h st.h $(FLAGS_H) $(TOPLEV_H)
type.o: type.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) type.h malloc.h
version.o: version.c
where.o: where.c proj.h $(CONFIG_H) $(SYSTEM_H) $(ASSERT_H) where.h $(GLIMITS_H) \
 top.h malloc.h lex.h $(GGC_H)

stamp-str: str-1t.h str-1t.j str-2t.h str-2t.j \
 str-fo.h str-fo.j str-io.h str-io.j str-nq.h  str-nq.j \
 str-op.h str-op.j str-ot.h str-ot.j
	touch stamp-str

str-1t.h str-1t.j: fini str-1t.fin
	./fini `echo $(srcdir)/str-1t.fin | sed 's,^\./,,'` str-1t.j str-1t.h

str-2t.h str-2t.j: fini str-2t.fin
	./fini `echo $(srcdir)/str-2t.fin | sed 's,^\./,,'` str-2t.j str-2t.h

str-fo.h str-fo.j: fini str-fo.fin
	./fini `echo $(srcdir)/str-fo.fin | sed 's,^\./,,'` str-fo.j str-fo.h

str-io.h str-io.j: fini str-io.fin
	./fini `echo $(srcdir)/str-io.fin | sed 's,^\./,,'` str-io.j str-io.h

str-nq.h str-nq.j: fini str-nq.fin
	./fini `echo $(srcdir)/str-nq.fin | sed 's,^\./,,'` str-nq.j str-nq.h

str-op.h str-op.j: fini str-op.fin
	./fini `echo $(srcdir)/str-op.fin | sed 's,^\./,,'` str-op.j str-op.h

str-ot.h str-ot.j: fini str-ot.fin
	./fini `echo $(srcdir)/str-ot.fin | sed 's,^\./,,'` str-ot.j str-ot.h

fini: fini.o proj-h.o
	$(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o fini fini.o proj-h.o

fini.o:
	$(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
	      `echo $(srcdir)/fini.c | sed 's,^\./,,'` -o $@

# Like proj.o, but depends on hconfig.h instead of config.h.
proj-h.o: proj.c proj.h $(HCONFIG_H) $(SYSTEM_H) $(ASSERT_H) $(GLIMITS_H)
	$(HOST_CC) -c -DUSE_HCONFIG $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
	      `echo $(srcdir)/proj.c | sed 's,^\./,,'` -o $@

# This rule is just a handy way to build the g77 derived files without
# having the gcc source tree around.
g77-only: force
	if [ -f g77.texi ] ; then \
	  (cd ..; $(MAKE) srcdir=. HOST_CC=cc HOST_CFLAGS=-g -f f/Make-lang.in f77.rebuilt); \
	else \
	  $(MAKE) srcdir=. HOST_CC=cc HOST_CFLAGS=-g -f f/Make-lang.in f77.rebuilt; \
	fi

#
# These exist for maintenance purposes.

# Update the tags table.
TAGS: force
	cd $(srcdir)/f ;			\
	etags *.c *.h ;				\
	echo 'l' | tr 'l' '\f' >> TAGS ;	\
	etags -a ../*.h ../*.c;

.PHONY: none all all.indirect f77.rebuilt compiler native deps-kinda g77-only TAGS force

force: