]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/Makefile.in
(CC): Add -w.
[thirdparty/gcc.git] / gcc / Makefile.in
CommitLineData
32e6d418 1# Makefile for GNU C compiler.
90c04b70 2# Copyright (C) 1987, 1988, 1990, 1991, 1992 Free Software Foundation, Inc.
32e6d418 3
4#This file is part of GNU CC.
5
6#GNU CC is free software; you can redistribute it and/or modify
7#it under the terms of the GNU General Public License as published by
8#the Free Software Foundation; either version 2, or (at your option)
9#any later version.
10
11#GNU CC is distributed in the hope that it will be useful,
12#but WITHOUT ANY WARRANTY; without even the implied warranty of
13#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14#GNU General Public License for more details.
15
16#You should have received a copy of the GNU General Public License
17#along with GNU CC; see the file COPYING. If not, write to
18#the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20# The targets for external use include:
21# all, doc, proto, install, install-cross, install-cross-rest,
c6396a0b 22# uninstall, TAGS, mostlyclean, clean, distclean, realclean,
32e6d418 23# stage1, stage2, stage3, stage4.
24
c6396a0b 25# Suppress smart makes who think they know how to automake Yacc files
26.y.c:
27
32e6d418 28# Variables that exist for you to override.
29# See below for how to change them for certain systems.
30
31# Selection of languages to be made.
32LANGUAGES = c c++ objective-c proto
33
34ALLOCA =
1ab99fde 35ALLOCA_FLAGS =
94c53b91 36ALLOCA_FINISH = true
32e6d418 37
38# Various ways of specifying flags for compilations:
39# CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
40# BOOT_CFLAGS is the value of CFLAGS to pass
41# to the stage2 and stage3 compilations
42# XCFLAGS is used for most compilations but not when using the GCC just built.
43XCFLAGS =
44CFLAGS = -g
45BOOT_CFLAGS = -O $(CFLAGS)
46# These exists to be overridden by the x-* and t-* files, respectively.
47X_CFLAGS =
48T_CFLAGS =
49
50X_CPPFLAGS =
51T_CPPFLAGS =
52
53CC = cc
54BISON = bison
55BISONFLAGS =
56AR = ar
57OLDAR_FLAGS = qc
58AR_FLAGS = rc
59SHELL = /bin/sh
60# on sysV, define this as cp.
61INSTALL = install -c
62# These permit overriding just for certain files.
63INSTALL_PROGRAM = $(INSTALL)
64INSTALL_DATA = $(INSTALL)
65SYMLINK = ln -s
bc51108a 66MAKEINFO = makeinfo
32e6d418 67
68# Define this as & to perform parallel make on a Sequent.
69# Note that this has some bugs, and it seems currently necessary
70# to compile all the gen* files first by hand to avoid erroneous results.
71P =
72
73# How to invoke ranlib.
74RANLIB = ranlib
75# Test to use to see whether ranlib exists on the system.
76RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
77
78# Compiler to use for compiling libgcc1.a.
79# OLDCC should not be the GNU C compiler,
80# since that would compile typical libgcc1.a functions such as mulsi3
81# into infinite recursions.
82OLDCC = cc
83
84# CFLAGS for use with OLDCC, for compiling libgcc1.a.
85# NOTE: -O does not work on some Unix systems!
86CCLIBFLAGS = -O
87
c6396a0b 88# Version of ar to use when compiling libgcc1.a.
32e6d418 89OLDAR = ar
90
b3781cc4 91# The GCC to use for compiling libgcc2.a, enquire, and cross-test.
92# Usually the one we just built.
32e6d418 93# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
79613d1b 94GCC_FOR_TARGET = ./xgcc -B./
32e6d418 95
96# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
97# It omits XCFLAGS, and specifies -B./.
b3781cc4 98# It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
79613d1b 99GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(CROSS_GCC_CFLAGS)
32e6d418 100
101# Special flags for compiling enquire.
102# We disable optimization to make floating point more reliable.
f06c46e6 103ENQUIRE_CFLAGS = -DNO_MEM -DNO_STDDEF -DNO_LONG_DOUBLE_IO -O0
32e6d418 104ENQUIRE_LDFLAGS = $(LDFLAGS)
105
106# Tools to use when building a cross-compiler.
107# These are used because `configure' appends `cross-make'
108# to the makefile when making a cross-compiler.
109
110TARGET_TOOLPREFIX = $(tooldir)/bin/
111AR_FOR_TARGET = $(TARGET_TOOLPREFIX)ar
112AR_FOR_TARGET_FLAGS = rc
113RANLIB_FOR_TARGET = $(TARGET_TOOLPREFIX)ranlib
114RANLIB_TEST_FOR_TARGET = [ -f $(TARGET_TOOLPREFIX)ranlib ]
115CROSS_TOOLS =
116
3f69fed5 117# Dir to search for system headers. Overridden by cross-make.
118SYSTEM_HEADER_DIR = /usr/include
119
8bd8ea06 120# There may be a premade insn-attrtab.c for this machine.
121# (You could rebuild it with genattrtab as usual, but it takes a long time.)
122# PREMADE_ATTRTAB is the file name of the file to use.
123# PREMADE_ATTRTAB_MD is the md file it corresponds to.
124PREMADE_ATTRTAB_MD = Makefile # Guaranteed not to cmp equal to md.
125PREMADE_ATTRTAB =
126
32e6d418 127target= ... `configure' substitutes actual target name here.
128xmake_file= ... `configure' substitutes actual x- file name here.
129tmake_file= ... `configure' substitutes actual t- file name here.
18196d1e 130version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
32e6d418 131
132# Directory where sources are, from where we are.
133srcdir = .
134# Common prefix for installation directories.
135# NOTE: This directory must exist when you start installation.
136prefix = /usr/local
c6396a0b 137# Directory in which to put host dependent programs and libraries
138exec_prefix = $(prefix)
32e6d418 139# Directory in which to put the executable for the command `gcc'
c6396a0b 140bindir = $(exec_prefix)/bin
32e6d418 141# Directory in which to put the directories used by the compiler.
c6396a0b 142libdir = $(exec_prefix)/lib
32e6d418 143# Directory in which the compiler finds executables, libraries, etc.
c6396a0b 144libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
f8330604 145# Directory for header file assert.h.
0eb4c465 146includedir = $(prefix)/include
db9a0b19 147# assertdir is overridden in cross-make.
148assertdir = $(includedir)
32e6d418 149# Extension (if any) to put in installed man-page filename.
150manext = .1
151# Directory in which to put man pages.
152mandir = $(prefix)/man/man1
153# Directory in which to find other cross-compilation tools and headers.
154# Used in install-cross.
155tooldir = $(prefix)/$(target)
f32abccb 156# Dir for temp files.
157tmpdir = /tmp
32e6d418 158
159# Additional system libraries to link with.
160CLIB=
161
162# Change this to a null string if obstacks are installed in the
163# system library.
164OBSTACK=obstack.o
165
166# Specify the rule for actually making libgcc1.a.
c6396a0b 167# The value may be empty; that means to do absolutely nothing
168# with or for libgcc1.a.
32e6d418 169LIBGCC1 = libgcc1.a
170
171# Specify the rule for actually making libgcc2.a.
172LIBGCC2 = libgcc2.a
173
174# Options to use when compiling libgcc2.a.
175# -g1 causes output of debug info only for file-scope entities.
176# we use this here because that should be enough, and also
177# so that -g1 will be tested.
178LIBGCC2_CFLAGS = -O2 $(GCC_CFLAGS) -g1
179
180# List of extra executables that should be compiled for this target machine
181# that are used for compiling from source code to object code.
182# The rules for compiling them should be in the t-* file for the machine.
183EXTRA_PASSES =
184
c6396a0b 185# Like EXTRA_PASSES, but these are used when linking.
186EXTRA_PROGRAMS =
187
188# List of extra object files that should be compiled for this target machine.
32e6d418 189# The rules for compiling them should be in the t-* file for the machine.
190EXTRA_PARTS =
191
c6396a0b 192# List of extra object files that should be compiled and linked with
193# compiler proper (cc1, cc1obj, cc1plus).
194EXTRA_OBJS =
195
630c76ba 196# List of additional header files to install.
197# Often this is edited directly by `configure'.
198EXTRA_HEADERS =
199
79f818d0 200# Set this to `ld' to enable use of collect2.
201# USE_COLLECT2 =
202# It is convenient for configure to add the assignment at the beginning,
203# so don't override it here.
204
32e6d418 205# List of extra C and assembler files to add to libgcc1.a.
206# Assembler files should have names ending in `.asm'.
207LIB1FUNCS_EXTRA =
208
209# List of extra C and assembler files to add to libgcc2.a.
210# Assembler files should have names ending in `.asm'.
211LIB2FUNCS_EXTRA =
212
213# Program to convert libraries.
214LIBCONVERT =
215
216# Control whether header files are installed.
217# We will change this to install-fixincludes eventually.
218# It would be useful for people to try this now.
219INSTALL_HEADERS=install-headers
220
221# Select which version of fixincludes to use (I.E. regular versus SVR4)
222FIXINCLUDES=fixincludes
223
106a27e5 224# Additional directories of header files to run fixincludes on.
225# On most systems, this is empty.
226OTHER_FIXINCLUDES_DIRS=
227
77a164d8 228# List of things which should already be built whenever we try to use xgcc
32e6d418 229# to compile anything (without linking).
77a164d8 230GCC_PASSES=xgcc cc1 cpp $(EXTRA_PASSES)
32e6d418 231
77a164d8 232# List of things which should already be built whenever we try to use xgcc
32e6d418 233# to link anything.
79f818d0 234GCC_PARTS=$(GCC_PASSES) libgcc.a $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
32e6d418 235
5e03c63d 236# Name of `ld' to link into the binary directory for a cross-compiler.
237# If we are using collect2, this will be `gld', since `ld' is collect2.
238# Otherwise it is `ld'.
239REAL_LD_NAME=`if [ x$(USE_COLLECT2) = xld ]; then echo "gld"; else echo "ld"; fi`
240
32e6d418 241# Directory to link to, when using the target `maketest'.
242DIR = ../gcc
243
244# Flags to use when cross-building GCC.
245# Prefix to apply to names of object files when using them
246# to run on the machine we are compiling on.
247HOST_PREFIX=
248# Prefix to apply to names of object files when compiling them
249# to run on the machine we are compiling on.
250# The default for this variable is chosen to keep these rules
251# out of the way of the other rules for compiling the same source files.
252HOST_PREFIX_1=loser-
253HOST_CC=$(CC)
254HOST_CFLAGS=$(ALL_CFLAGS)
c6396a0b 255HOST_CLIB=$(CLIB)
32e6d418 256HOST_LDFLAGS=$(LDFLAGS)
257HOST_CPPFLAGS=$(ALL_CPPFLAGS)
c6396a0b 258HOST_ALLOCA=$(ALLOCA)
259HOST_MALLOC=$(MALLOC)
260HOST_OBSTACK=$(OBSTACK)
32e6d418 261
262# Choose the real default target.
263ALL=all.internal
264
265# Choose the real install target.
266INSTALL_TARGET=install-native
267
268# End of variables for you to override.
269
270# Definition of `all' is here so that new rules inserted by sed
271# do not specify the default target.
272# The real definition is under `all.internal' (for native compilers)
273# or `all.cross' (for cross compilers).
c6396a0b 274all: all.indirect
32e6d418 275
131b361e 276# This tells GNU Make version 3 not to put all variables in the environment.
277.NOEXPORT:
278
32e6d418 279# sed inserts variable overrides after the following line.
a0a99f10 280####target overrides
281####host overrides
282####cross overrides
e77fd588 283####build overrides
32e6d418 284\f
285# Now figure out from those variables how to compile and link.
286
c6396a0b 287all.indirect: $(ALL)
288
34b1478f 289# IN_GCC tells obstack.h to use gstddef.h.
290INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
32e6d418 291
292# This is the variable actually used when we compile.
293ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
294
295# Likewise.
296ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
297
298# Even if ALLOCA is set, don't use it if compiling with GCC.
c6396a0b 299USE_ALLOCA= ` case "${CC}" in "${OLDCC}") echo ${ALLOCA} ;; esac `
300USE_HOST_ALLOCA= ` case "${HOST_CC}"@"${HOST_ALLOCA}" in "${OLDCC}"@?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
301USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
302USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
32e6d418 303
304# Dependency on obstack, alloca, malloc or whatever library facilities
305# are not installed in the system libraries.
306# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
307LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
308
309# Likewise, for use in the tools that must run on this machine
310# even if we are cross-building GCC.
311# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
c6396a0b 312HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC)
32e6d418 313
314# How to link with both our special library facilities
315# and the system's installed libraries.
316LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(CLIB)
317
318# Likewise, for use in the tools that must run on this machine
319# even if we are cross-building GCC.
c6396a0b 320HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC) \
321 $(HOST_CLIB)
32e6d418 322
323HOST_RTL = $(HOST_PREFIX)rtl.o
324HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
262d46de 325HOST_PRINT = $(HOST_PREFIX)print-rtl.o
32e6d418 326
327# Specify the directories to be searched for header files.
328# Both . and srcdir are used, in that order,
329# so that tm.h and config.h will be found in the compilation
330# subdirectory rather than in the source directory.
331INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
332SUBDIR_INCLUDES = -I.. -I../$(srcdir) -I../$(srcdir)/config
333
334# Always use -I$(srcdir)/config when compiling.
335.c.o:
336 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
337
338# This tells GNU make version 3 not to export all the variables
339# defined in this file into the environment.
340.NOEXPORT:
341\f
342# Lists of files for various purposes.
343
344# A list of all the language-specific executables.
345COMPILERS = cc1 cc1plus cc1obj
346
347# Language-specific object files for C.
b3781cc4 348C_OBJS = c-parse.o c-lang.o c-lex.o \
349 c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-pragma.o
32e6d418 350
351# Language-specific object files for Objectionable C.
352OBJC_OBJS = objc-parse.o objc-actions.o \
b3781cc4 353 c-lex.o c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-pragma.o
32e6d418 354
355# Language-specific object files for C++.
356CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
357 cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
358 cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
359 cp-class.o cp-init.o cp-method.o cp-except.o \
360 cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
361 $(CPLUS_INPUT) cp-spew.o c-common.o
362
363# Language-independent object files.
364OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
365 function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
79f818d0 366 rtl.o print-rtl.o rtlanal.o emit-rtl.o \
367 dbxout.o sdbout.o dwarfout.o xcoffout.o \
32e6d418 368 integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
8a4b1e01 369 regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
32e6d418 370 insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
371 insn-recog.o insn-extract.o insn-output.o insn-emit.o \
79f818d0 372 insn-attrtab.o aux-output.o getpwd.o $(EXTRA_OBJS)
32e6d418 373
374# GEN files are listed separately, so they can be built before doing parallel
375# makes for cc1 or cc1plus. Otherwise sequent parallel make attempts to load
376# them before rtl.o is compiled.
377GEN= genemit genoutput genrecog genextract genflags gencodes genconfig genpeep
378
379# Files to be copied away after each stage in building.
380STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
381 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
382 insn-attr.h insn-attrtab.c \
383 stamp-flags stamp-config stamp-codes \
384 stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
d7330690 385 stamp-attr stamp-attrtab stamp-proto \
32e6d418 386 genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
387 genattrtab genattr \
79f818d0 388 $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
0b20f012 389 cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
32e6d418 390
391# Members of libgcc1.a.
392LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
393 _lshrsi3 _lshlsi3 _ashrsi3 _ashlsi3 \
394 _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
395 _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
396 _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
397 _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
398 _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
399
400# Library members defined in libgcc2.c.
401LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
402 _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 \
4b8f50a8 403 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
32e6d418 404 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
03ae18f4 405 __gcc_bcmp _varargs _eprintf _op_new _new_handler _op_delete \
c59af377 406 _bb _shtab _clear_cache _trampoline __main _exit _ctors
32e6d418 407
408# Header files that are made available under the same name
77a164d8 409# to programs compiled with GCC.
f8330604 410USER_H = va-alpha.h va-i860.h va-i960.h va-mips.h va-m88k.h \
90c04b70 411 va-pa.h va-pyr.h va-sparc.h va-spur.h proto.h $(EXTRA_HEADERS)
32e6d418 412
413# All the header files that are installed for users from GCC itself.
8a7d30f6 414INSTALLED_H = float.h stddef.h stdarg.h varargs.h $(USER_H) limits.h \
415 syslimits.h
32e6d418 416
417# The files that "belong" in CONFIG_H are deliberately omitted
418# because having them there would not be useful in actual practice.
419# All they would do is cause complete recompilation every time
420# one of the machine description files is edited.
421# That may or may not be what one wants to do.
422# If it is, rm *.o is an easy way to do it.
423# CONFIG_H = config.h tm.h
424CONFIG_H =
425RTL_H = rtl.h rtl.def machmode.h machmode.def
426TREE_H = tree.h real.h tree.def machmode.h machmode.def
427CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
428\f
429# Avoid a lot of time thinking about remaking Makefile.in and *.def.
430.SUFFIXES: .in .def
431
79f818d0 432Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
32e6d418 433 $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file)
434 sh config.status
435
436all.internal: start.encap rest.encap
437# This is what to compile if making a cross-compiler.
3f105d40 438all.cross: native gcc-cross specs libgcc.a cross-test $(EXTRA_PARTS)
e77fd588 439# This is what to compile if making gcc with a cross-compiler.
2cd018ae 440all.build: native xgcc $(EXTRA_PARTS)
32e6d418 441# This is what must be made before installing GCC and converting libraries.
3f69fed5 442start.encap: native xgcc specs $(LIBGCC1) xlimits.h
32e6d418 443# Use this to make a GCC that will be used only to recompile GCC.
444for-bootstrap: start.encap libgcc.a
445# These can't be made, with COFF encapsulation, until after GCC can run.
c6396a0b 446rest.encap: libgcc.a float.h $(EXTRA_PARTS)
32e6d418 447# This is what is made with the host's compiler
448# whether making a cross compiler or not.
79f818d0 449native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
32e6d418 450
451# Define the names for selecting languages in LANGUAGES.
452C c: cc1
453C++ c++: cc1plus
4f1fd857 454OBJC objc: cc1obj objc-runtime
455OBJECTIVE-C objective-c: cc1obj objc-runtime
32e6d418 456PROTO: proto
457
c6396a0b 458# Really, really stupid make features, such as SUN's KEEP_STATE, may force
459# a target to build even if it is up-to-date. So we must verify that
460# config.status does not exist before failing.
32e6d418 461config.status:
c6396a0b 462 @if [ ! -f config.status ] ; then \
463 echo You must configure gcc. Look at the INSTALL file for details.; \
464 false; \
465 else \
466 true; \
467 fi
32e6d418 468
840a6e8d 469# On the target machine, finish building a cross compiler.
470# This does the things that can't be done on the host machine.
471rest.cross: libgcc.a float.h specs
472
d7330690 473# Verify that it works to compile and link cross-test.
474# If it does, then there are sufficient replacements for libgcc1.a.
fe918d35 475cross-test: cross-test.o native gcc-cross libgcc.a
d7330690 476 $(GCC_FOR_TARGET) $(GCC_CFLAGS) cross-test.o -o $@
477cross-test.o: cross-test.c native gcc-cross
478 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/cross-test.c
479
840a6e8d 480# Recompile all the language-independent object files.
481# This is used only if the user explicitly asks for it.
32e6d418 482compilations: ${OBJS}
483
77a164d8 484# We call this executable `xgcc' rather than `gcc'
485# to avoid confusion if the current directory is in the path
486# and CC is `gcc'. It is renamed to `gcc' when it is installed.
487xgcc: gcc.o version.o $(LIBDEPS)
488 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o xgcc gcc.o version.o $(LIBS)
840a6e8d 489
490# Dump a specs file to make -B./ read these specs over installed ones.
77a164d8 491specs: xgcc
492 ./xgcc -dumpspecs > specs
32e6d418 493
77a164d8 494# We do want to create an executable named `xgcc', so we can use it to
32e6d418 495# compile libgcc2.a.
496# Also create gcc-cross, so that install-common will install properly.
77a164d8 497gcc-cross: xgcc
498 cp xgcc gcc-cross
32e6d418 499
500cc1:$(P) $(C_OBJS) $(OBJS) $(LIBDEPS)
501 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(LIBS)
502
503cc1plus:$(P) $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
504 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
505
506cc1obj:$(P) $(OBJC_OBJS) $(OBJS) $(LIBDEPS)
507 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1obj $(OBJC_OBJS) $(OBJS) $(LIBS)
508
509float.h: enquire
510 -./enquire -f > tmp-float.h
511 mv tmp-float.h float.h
512
513# Used to compile enquire with standard cc, but have forgotten why.
514# Let's try with GCC.
515enquire: enquire.o $(GCC_PARTS)
516 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
517enquire.o: $(srcdir)/enquire.c $(GCC_PASSES)
1a754c64 518# -if [ "$(srcdir)" != "." ]; then rm -f ./enquire.c; else true; fi
519# -cp $(srcdir)/enquire.c . > /dev/null 2>&1
c6396a0b 520# Breaking this line caused a problem with one version of GNU make.
1a754c64 521 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
3f69fed5 522
523# Build the version of limits.h that we will install.
524xlimits.h: glimits.h limitx.h limity.h
525 if [ -f $(SYSTEM_HEADER_DIR)/limits.h ] ; then \
526 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > xlimits.h; \
527 else \
528 cat $(srcdir)/glimits.h > xlimits.h; \
529 fi
32e6d418 530\f
531# Build libgcc.a.
532# This is done in two parts because some functions, in libgcc1.c,
77a164d8 533# must be compiled with something other than GCC,
534# while the rest, in libgcc2.c, must be compiled with xgcc.
535# That means we can't do libgcc2.c until after xgcc, cc1, etc.
32e6d418 536
537# Use this as value of LIBGCC1 to cause conversion to GNU library format.
538# LIBCONVERT should put its output in libgcc1.conv.
539libgcc1.conv: libgcc1.a
540 $(LIBCONVERT) libgcc1.a libgcc1.conv
541
542# Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
543# Make an empty file instead.
544libgcc1.null: $(CROSS_TOOLS) $(GCC_PASSES)
545 echo "__foo () {}" > dummy.c
546 $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
547 $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy.o
548 rm -f dummy.o dummy.c
549
fe918d35 550# This is $(LIBGCC1) for a cross-compiler.
551# We have no automatic way of building libgcc1.a,
552# so it's up to the installer to find a way to do that.
553# This rule deliberately does not depend on libgcc1.a
554# so that it will fail if the installer hasn't provided it.
555libgcc1.cross:
556 mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
557
32e6d418 558# Compile the library of arithmetic subroutines with the native compiler.
77a164d8 559# Don't compile it with GCC!
32e6d418 560# (That would cause most arithmetic functions to call themselves.)
561libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
562 -rm -f tmplibgcc1.a
563# Actually build it in tmplibgcc1.a, then rename at end,
564# so that libgcc1.a itself remains nonexistent if compilation is aborted.
565# -e causes any failing command to make this rule fail.
566# -e doesn't work in certain shells, so we test $$? as well.
567 set -e; \
568 for name in $(LIB1FUNCS); \
569 do \
570 echo $${name}; \
571 rm -f $${name}.o; \
572 $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
573 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
574 mv libgcc1.o $${name}.o; \
575 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
576 rm -f $${name}.o; \
577 done
578# Some shells crash when a loop has no items.
579# So make sure there is always at least one--`..'.
580# Then ignore it.
581# We don't use -e here because there are if statements
582# that should not make the command give up when the if condition is false.
583# Instead, we test for failure after each command where it matters.
c6396a0b 584 -for file in .. $(LIB1FUNCS_EXTRA); \
32e6d418 585 do \
586 if [ x$${file} != x.. ]; then \
587 name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
588 echo $${name}; \
589 if [ $${name}.asm = $${file} ]; then \
f32abccb 590 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
32e6d418 591 else true; fi; \
592 $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
593 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
594 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
595 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
596 rm -f $${name}.[so]; \
597 else true; \
598 fi; \
599 done
600 mv tmplibgcc1.a libgcc1.a
601
602# Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
603# But recompiling cc1 should not force recompilation of libgcc2.a.
604# If you want to force recompilation, delete libgcc2.a.
605# Depend on install-cross-tools to make sure we set up properly
606# to run the assembler before we try compiling anything.
607# install-cross-tools does nothing if not cross compiling.
608libgcc2.ready: $(GCC_PASSES) $(CROSS_TOOLS)
609 -if [ -f libgcc2.ready ] ; then \
610 true; \
611 else \
612 touch libgcc2.ready; \
613 fi
614
615libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
33927595 616 machmode.h longlong.h gbl-ctors.h config.status
32e6d418 617# Actually build it in tmplibgcc2.a, then rename at end,
618# so that libgcc2.a itself remains nonexistent if compilation is aborted.
619 -rm -f tmplibgcc2.a
620# -e causes any failing command to make this rule fail.
621# -e doesn't work in certain shells, so we test $$? as well.
622 set -e; \
623 for name in $(LIB2FUNCS); \
624 do \
625 echo $${name}; \
c6396a0b 626 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
32e6d418 627 $(srcdir)/libgcc2.c -o $${name}.o; \
628 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
629 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
630 rm -f $${name}.o; \
631 done
632# Some shells crash when a loop has no items.
633# So make sure there is always at least one--`..'.
634# Then ignore it.
635# We don't use -e here because there are if statements
636# that should not make the command give up when the if condition is false.
637# Instead, we test for failure after each command where it matters.
c6396a0b 638 -for file in .. $(LIB2FUNCS_EXTRA); \
32e6d418 639 do \
640 if [ x$${file} != x.. ]; then \
641 name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
642 echo $${name}; \
643 if [ $${name}.asm = $${file} ]; then \
f32abccb 644 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
32e6d418 645 else true; fi; \
c6396a0b 646 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
32e6d418 647 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
648 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
649 rm -f $${name}.[so]; \
650 else true; \
651 fi; \
652 done
653 mv tmplibgcc2.a libgcc2.a
654# These lines were deleted from above the mv command
655# because ranlibing libgcc.a itself should suffice.
656# -if [ x${HPUX_GAS} = x ] ; then \
657# if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi \
658# else true; fi
659
660# Combine the various libraries into a single library, libgcc.a.
661libgcc.a: $(LIBGCC1) $(LIBGCC2)
662 -rm -rf tmplibgcc.a libgcc.a tmpcopy
663 mkdir tmpcopy
c6396a0b 664 -if [ x$(LIBGCC1) != x ]; \
665 then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
666 else true; \
667 fi
32e6d418 668 (cd tmpcopy; $(AR) x ../$(LIBGCC2))
669 (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *.o)
670 rm -rf tmpcopy
671 -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
672# Actually build it in tmplibgcc.a, then rename at end,
673# so that libgcc.a itself remains nonexistent if compilation is aborted.
674 mv tmplibgcc.a libgcc.a
675
4f1fd857 676objc-runtime: libobjc.a
677
bd594491 678# Build the Objective C runtime library.
4f1fd857 679libobjc.a: cc1obj libgcc2.ready
d6518ea8 680 if [ -d objc ]; then true; else mkdir objc; fi
4f1fd857 681 thisdir1=`pwd`; \
e5190fd1 682 srcdir1=`cd $(srcdir); pwd`; \
4f1fd857 683 cd objc; \
72bce1c3 684 $(MAKE) -f $${srcdir1}/objc/Makefile libobjc.a \
685 srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
686 GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
4f1fd857 687 GCC_CFLAGS="$(GCC_CFLAGS)"
553479e8 688 -rm -f libobjc.a
8281617f 689 ln objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
4f1fd857 690 -if $(RANLIB_TEST) ; then $(RANLIB) libobjc.a; else true; fi
691
692# This is used by objc/Makefile if the user runs that directly.
693sublibobjc.a: cc1obj libgcc2.ready
e5190fd1 694 thisdir1=`pwd`; \
695 srcdir1=`cd $(srcdir); pwd`; \
696 cd objc; \
553479e8 697 $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
e5190fd1 698 srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
699 GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
700 GCC_CFLAGS="$(GCC_CFLAGS)"
32e6d418 701
702# Compile two additional files that are linked with every program
703# linked using GCC on system V, for the sake of C++ constructors.
704crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
705 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_BEGIN \
c6396a0b 706 -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o
32e6d418 707
708crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
709 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \
c6396a0b 710 -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtend.o
32e6d418 711\f
712# Compiling object files from source files.
713
714# Note that dependencies on obstack.h are not written
715# because that file is not part of GCC.
716# Dependencies on gvarargs.h are not written
717# because all that file does, when not compiling with GCC,
718# is include the system varargs.h.
719
720# C language specific files.
721
f678532a 722c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h c-parse.h \
723 c-tree.h input.h flags.h
32e6d418 724 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
725$(srcdir)/c-parse.c $(srcdir)/c-parse.h: $(srcdir)/c-parse.y
726 cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
c373bd56 727$(srcdir)/c-parse.y: $(srcdir)/c-parse.in $(srcdir)/cond.awk
728 cd $(srcdir); awk -f cond.awk objc=0 c-parse.in > c-parse.y
32e6d418 729
730c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
731c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
732c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
733c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h c-parse.h \
734 input.h flags.h
735c-aux-info.o : c-aux-info.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
736c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
b3781cc4 737c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H)
32e6d418 738
739# C++ language specific files.
740
741cp-parse.o : $(srcdir)/cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
742 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
743 `echo $(srcdir)/cp-parse.c | sed 's,^\./,,'`
744
745$(srcdir)/cp-parse.c $(srcdir)/cp-parse.h : $(srcdir)/cp-parse.y
bb02c0b3 746 @echo expect 29 shift/reduce conflicts and 14 reduce/reduce conflicts
32e6d418 747 cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
fe918d35 748 cd $(srcdir); grep '^#define[ ]*YYEMPTY' cp-parse.c >>cp-parse.h
32e6d418 749
750cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
751 $(srcdir)/cp-parse.h flags.h
752cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
753 $(srcdir)/cp-parse.h $(srcdir)/cp-input.c flags.h
754cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
755 cp-lex.h cp-decl.h stack.h
756cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
757 cp-lex.h cp-decl.h
758cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
759cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
760cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h \
761 cp-class.h flags.h
762cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h cp-class.h \
763 flags.h
764cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
765cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
766cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
767cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
768cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
769cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
770cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
771cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
772cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
773 expr.h insn-codes.h
774cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
775cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H)
776cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
777
79f818d0 778# To make a configuration always use collect2, set USE_COLLECT2 to ld.
779ld: collect2
780 rm -f ld
781 ln collect2 ld
782
32e6d418 783collect2 : collect2.o version.o $(LIBDEPS)
e77fd588 784# Don't try modifying collect2 (aka ld) in place--it might be linking this.
785 -rm -f collect2
32e6d418 786 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o collect2 collect2.o version.o $(LIBS)
787
788collect2.o : collect2.c $(CONFIG_H) gstab.h
5e03c63d 789 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
790 -DTARGET_MACHINE=\"$(target)\" \
791 -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
32e6d418 792
793# Objectionable C language specific files.
794
795objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
796 c-tree.h input.h flags.h objc-actions.h
797 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
798$(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
799 cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
c373bd56 800$(srcdir)/objc-parse.y: $(srcdir)/c-parse.in $(srcdir)/cond.awk
801 cd $(srcdir); awk -f cond.awk objc=1 c-parse.in > objc-parse.y
32e6d418 802
803objc-actions.o : objc-actions.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h \
804 flags.h objc-actions.h
805
806# A file used by all variants of C.
807
808c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
809
810# Language-independent files.
811
812gcc.o: gcc.c $(CONFIG_H) gvarargs.h obstack.h
813 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
814 -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
c6396a0b 815 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
32e6d418 816 -DDEFAULT_TARGET_MACHINE=\"$(target)\" \
aa2143b5 817 -DTOOLDIR_BASE_PREFIX=\"$(prefix)/\" \
ae0fea3a 818 -DTOOLDIR=\"$(tooldir)/\" \
8618ef50 819 $(MAYBE_TARGET_DEFAULT) \
32e6d418 820 -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
821
822dumpvers: dumpvers.c
823
824version.o: version.c
825obstack.o: obstack.c
826
827tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
828print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
829stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
830fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h
c6396a0b 831toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
79f818d0 832 insn-attr.h xcoffout.h
833 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
fe918d35 834 $(MAYBE_TARGET_DEFAULT) $(MAYBE_USE_COLLECT2) \
835 -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
32e6d418 836
837rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
838
839print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
840rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
841
35325097 842varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
843 defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
32e6d418 844function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
845 insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
846 recog.h output.h
847stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
848 insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
849expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h function.h \
850 insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
851calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
852 insn-flags.h
853expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
854 insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
855explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
856 insn-config.h expr.h recog.h insn-flags.h insn-codes.h
857optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
858 insn-flags.h insn-config.h insn-codes.h expr.h recog.h
859dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
e7748130 860 insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
32e6d418 861sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
862 insn-config.h reload.h
863dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
8a19d0d5 864 insn-config.h reload.h output.h defaults.h
79f818d0 865xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
32e6d418 866emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h \
867 regs.h insn-config.h insn-codes.h real.h expr.h
c6396a0b 868getpwd.o : getpwd.c $(CONFIG_H)
32e6d418 869
870integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
871 insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
872
873jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
874 insn-config.h insn-flags.h insn-codes.h expr.h real.h
875stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
876
877cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
878 insn-config.h recog.h
879loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
880 insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
881unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
882 integrate.h regs.h flags.h expr.h loop.h
883flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
884 basic-block.h regs.h hard-reg-set.h output.h
885combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h \
886 insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
887 basic-block.h recog.h real.h
888regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
4023cea7 889 basic-block.h regs.h insn-config.h recog.h reload.h real.h
32e6d418 890local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
891 regs.h hard-reg-set.h insn-config.h recog.h output.h
8a4b1e01 892global.o : global.c $(CONFIG_H) $(RTL_H) flags.h \
32e6d418 893 basic-block.h regs.h hard-reg-set.h insn-config.h output.h
894
895reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
896 reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
897reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
898 reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
899 basic-block.h recog.h output.h
900caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
901 regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
902reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
903 basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
904 flags.h output.h
905sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
906 flags.h insn-config.h insn-attr.h
907final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
908 recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
fe918d35 909 hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
32e6d418 910recog.o : recog.c $(CONFIG_H) $(RTL_H) \
911 regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
912 insn-flags.h insn-codes.h real.h
913reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
914 regs.h hard-reg-set.h flags.h insn-config.h
48c6936b 915
32e6d418 916aux-output.o : aux-output.c $(CONFIG_H) \
917 $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
918 insn-flags.h output.h insn-attr.h insn-codes.h
919
920# Normally this target is not used; but it is used if you
921# define ALLOCA=alloca.o. In that case, you must get a suitable alloca.c
922# from the GNU Emacs distribution.
32e6d418 923alloca.o: alloca.c
32e6d418 924 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
fe918d35 925 -Demacs -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
32e6d418 926 $(ALLOCA_FINISH)
927\f
928# Generate header and source files from the machine description,
929# and compile them.
930
931.PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
932 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
933 insn-attr.h insn-attrtab.c
934
935# The following pair of rules has this effect:
936# genconfig is run only if the md has changed since genconfig was last run;
937# but the file insn-config.h is touched only when its contents actually change.
938
939# Each of the other insn-* files is handled by a similar pair of rules.
940
3f69fed5 941# This causes an anomaly in the results of make -n
942# because insn-* is older than stamp-*
943# and thus make -n thinks that insn-* will be updated
944# and force recompilation of things that depend on it.
945# We use move-if-changed precisely to avoid such recompilation.
946# But there is no way to teach make -n that it will be avoided.
947
32e6d418 948# Each of the insn-*.[ch] rules has a semicolon at the end,
949# for otherwise the system Make on SunOS 4.1 never tries
950# to recompile insn-*.o.
951
952insn-config.h: stamp-config ;
953stamp-config : md genconfig $(srcdir)/move-if-change
954 ./genconfig md > tmp-config.h
955 $(srcdir)/move-if-change tmp-config.h insn-config.h
956 touch stamp-config
957
958insn-flags.h: stamp-flags ;
959stamp-flags : md genflags $(srcdir)/move-if-change
960 ./genflags md > tmp-flags.h
961 $(srcdir)/move-if-change tmp-flags.h insn-flags.h
962 touch stamp-flags
963
964insn-codes.h: stamp-codes ;
965stamp-codes : md gencodes $(srcdir)/move-if-change
966 ./gencodes md > tmp-codes.h
967 $(srcdir)/move-if-change tmp-codes.h insn-codes.h
968 touch stamp-codes
969
970insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
971 insn-config.h insn-flags.h insn-codes.h
972 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
973
974insn-emit.c: stamp-emit ;
975stamp-emit : md genemit $(srcdir)/move-if-change
976 ./genemit md > tmp-emit.c
977 $(srcdir)/move-if-change tmp-emit.c insn-emit.c
978 touch stamp-emit
979
980insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
981 real.h output.h flags.h
982 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
983
984insn-recog.c: stamp-recog ;
985stamp-recog : md genrecog $(srcdir)/move-if-change
986 ./genrecog md > tmp-recog.c
987 $(srcdir)/move-if-change tmp-recog.c insn-recog.c
988 touch stamp-recog
989
990insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
991 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
992
993insn-extract.c: stamp-extract ;
994stamp-extract : md genextract $(srcdir)/move-if-change
995 ./genextract md > tmp-extract.c
996 $(srcdir)/move-if-change tmp-extract.c insn-extract.c
997 touch stamp-extract
998
999insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
1000 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1001
1002insn-peep.c: stamp-peep ;
1003stamp-peep : md genpeep $(srcdir)/move-if-change
1004 ./genpeep md > tmp-peep.c
1005 $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1006 touch stamp-peep
1007
1008insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1009 insn-attr.h insn-config.h
1010 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1011
1012insn-attr.h: stamp-attr ;
1013stamp-attr : md genattr $(srcdir)/move-if-change
1014 ./genattr md > tmp-attr.h
1015 $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1016 touch stamp-attr
1017
1018insn-attrtab.c: stamp-attrtab ;
1019stamp-attrtab : md genattrtab $(srcdir)/move-if-change
8bd8ea06 1020 if cmp -s $(PREMADE_ATTRTAB_MD) md; \
1021 then \
1022 echo Using $(PREMADE_ATTRTAB); \
ab866dde 1023 cp $(PREMADE_ATTRTAB) tmp-attrtab.c; \
8bd8ea06 1024 else \
1025 ./genattrtab md > tmp-attrtab.c; \
1026 fi
32e6d418 1027 $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1028 touch stamp-attrtab
1029
1030insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1031 hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
1032 insn-codes.h
1033 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1034
1035insn-output.c: stamp-output ;
1036stamp-output : md genoutput $(srcdir)/move-if-change
1037 ./genoutput md > tmp-output.c
1038 $(srcdir)/move-if-change tmp-output.c insn-output.c
1039 touch stamp-output
1040\f
1041# Compile the programs that generate insn-* from the machine description.
1042# They are compiled with $(HOST_CC), and associated libraries,
1043# since they need to run on this machine
1044# even if GCC is being compiled to run on some other machine.
1045
1046# $(CONFIG_H) is omitted from the deps of the gen*.o
1047# because these programs don't really depend on anything
1048# about the target machine. They do depend on config.h itself,
1049# since that describes the host machine.
1050
1051genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
1052 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genconfig \
1053 genconfig.o $(HOST_RTL) $(HOST_LIBS)
1054
e77fd588 1055genconfig.o : genconfig.c $(RTL_H) hconfig.h
32e6d418 1056 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1057
1058genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
1059 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genflags \
1060 genflags.o $(HOST_RTL) $(HOST_LIBS)
1061
e77fd588 1062genflags.o : genflags.c $(RTL_H) hconfig.h
32e6d418 1063 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1064
1065gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
1066 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gencodes \
1067 gencodes.o $(HOST_RTL) $(HOST_LIBS)
1068
e77fd588 1069gencodes.o : gencodes.c $(RTL_H) hconfig.h
32e6d418 1070 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1071
1072genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
1073 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genemit \
1074 genemit.o $(HOST_RTL) $(HOST_LIBS)
1075
e77fd588 1076genemit.o : genemit.c $(RTL_H) hconfig.h
32e6d418 1077 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1078
1079genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
1080 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genrecog \
1081 genrecog.o $(HOST_RTL) $(HOST_LIBS)
1082
e77fd588 1083genrecog.o : genrecog.c $(RTL_H) hconfig.h
32e6d418 1084 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1085
1086genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
1087 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genextract \
1088 genextract.o $(HOST_RTL) $(HOST_LIBS)
1089
e77fd588 1090genextract.o : genextract.c $(RTL_H) hconfig.h insn-config.h
32e6d418 1091 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1092
1093genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
1094 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genpeep \
1095 genpeep.o $(HOST_RTL) $(HOST_LIBS)
1096
e77fd588 1097genpeep.o : genpeep.c $(RTL_H) hconfig.h
32e6d418 1098 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1099
1100genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
1101 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattr \
1102 genattr.o $(HOST_RTL) $(HOST_LIBS)
1103
e77fd588 1104genattr.o : genattr.c $(RTL_H) hconfig.h
32e6d418 1105 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1106
262d46de 1107genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
32e6d418 1108 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattrtab \
262d46de 1109 genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
32e6d418 1110
e77fd588 1111genattrtab.o : genattrtab.c $(RTL_H) hconfig.h insn-config.h
32e6d418 1112 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1113
1114genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
1115 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genoutput \
1116 genoutput.o $(HOST_RTL) $(HOST_LIBS)
1117
e77fd588 1118genoutput.o : genoutput.c $(RTL_H) hconfig.h
32e6d418 1119 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1120\f
1121# Compile the libraries to be used by gen*.
1122# If we are not cross-building, gen* use the same .o's that cc1 will use,
1123# and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1124# with the rules for rtl.o, alloca.o, etc.
1125$(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
1126 rm -f $(HOST_PREFIX)rtl.c
e77fd588 1127 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
32e6d418 1128 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1129
262d46de 1130$(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1131 rm -f $(HOST_PREFIX)print-rtl.c
e77fd588 1132 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
262d46de 1133 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1134
32e6d418 1135$(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1136 rm -f $(HOST_PREFIX)rtlanal.c
e77fd588 1137 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
32e6d418 1138 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1139
1140$(HOST_PREFIX_1)alloca.o: alloca.c
1141 rm -f $(HOST_PREFIX)alloca.c
1142 cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1143 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1144
1145$(HOST_PREFIX_1)obstack.o: obstack.c
1146 rm -f $(HOST_PREFIX)obstack.c
e77fd588 1147 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
32e6d418 1148 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1149
1150$(HOST_PREFIX_1)malloc.o: malloc.c
1151 rm -f $(HOST_PREFIX)malloc.c
e77fd588 1152 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
32e6d418 1153 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1154
1155# This satisfies the dependency that we get if you cross-compile a compiler
1156# that does not need to compile alloca, malloc or whatever.
1157$(HOST_PREFIX_1):
1158 touch $(HOST_PREFIX_1)
1159\f
1160# Remake cpp and protoize.
1161
1162# Making the preprocessor
1163cpp: cccp
1164 -rm -f cpp
1165 ln cccp cpp
1166cccp: cccp.o cexp.o version.o $(LIBDEPS)
1167 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
1168cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
1169 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1170$(srcdir)/cexp.c: $(srcdir)/cexp.y
1171 cd $(srcdir); $(BISON) -o cexp.c cexp.y
1172cccp.o: cccp.c $(CONFIG_H) pcp.h version.c
1173# The reason we use $(libdir)/g++-include rather than using libsubdir
1174# is for compatibility with the current version of libg++.
1175 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
c6396a0b 1176 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1177 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1178 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
c6396a0b 1179 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1180 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
ae0fea3a 1181 -DTOOLDIR=\"$(tooldir)/\" \
32e6d418 1182 -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1183
77a164d8 1184proto: config.status protoize unprotoize SYSCALLS.c.X
32e6d418 1185
c6396a0b 1186protoize: protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
32e6d418 1187 $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
c6396a0b 1188 protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
ab866dde 1189protoize.o: stamp-proto ;
1190
1191unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1192 $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1193 unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
1194unprotoize.o: stamp-proto ;
1195
1196stamp-proto: $(srcdir)/protoize.c getopt.h $(CONFIG_H)
32e6d418 1197 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1198 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
c6396a0b 1199 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1200 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1201 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
32e6d418 1202 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
1203 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
ab866dde 1204 -DUNPROTOIZE $(srcdir)/protoize.c
1205 mv protoize.o unprotoize.o
32e6d418 1206 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1207 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
c6396a0b 1208 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1209 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1210 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
32e6d418 1211 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
1212 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
ab866dde 1213 $(srcdir)/protoize.c
77a164d8 1214 touch stamp-proto
32e6d418 1215
1216getopt.o: $(srcdir)/getopt.c getopt.h
1217 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1218getopt1.o: $(srcdir)/getopt1.c getopt.h
1219 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1220
32e6d418 1221# This info describes the target machine, so compile with GCC just built.
79f818d0 1222SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES)
f678532a 1223 -rm -f SYSCALLS.c tmp-SYSCALLS.s
79f818d0 1224 cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
32e6d418 1225 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
f678532a 1226 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1227 -rm -f SYSCALLS.c tmp-SYSCALLS.s
0b20f012 1228
1229test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
c548e550 1230 -rm -f tmp-proto.[cso]
262d46de 1231 cp $(srcdir)/protoize.c tmp-proto.c
1232 chmod u+w tmp-proto.c
c548e550 1233 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1234 $(CFLAGS) $(INCLUDES) \
0b20f012 1235 -DGCC_INCLUDE_DIR=0 \
1236 -DGPLUSPLUS_INCLUDE_DIR=0 \
1237 -DCROSS_INCLUDE_DIR=0 \
46073b39 1238 -DTOOL_INCLUDE_DIR=0 \
262d46de 1239 -DSTD_PROTO_DIR=0" tmp-proto.c
1a754c64 1240 @echo '**********' Expect 400 lines of differences.
c548e550 1241 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1242 -wc -l tmp-proto.diff
1243 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1244 $(CFLAGS) $(INCLUDES) \
0b20f012 1245 -DGCC_INCLUDE_DIR=0 \
1246 -DGPLUSPLUS_INCLUDE_DIR=0 \
1247 -DCROSS_INCLUDE_DIR=0 \
46073b39 1248 -DTOOL_INCLUDE_DIR=0 \
262d46de 1249 -DSTD_PROTO_DIR=0" tmp-proto.c
0b20f012 1250 @echo Expect zero differences.
262d46de 1251 diff $(srcdir)/protoize.c tmp-proto.c | cat
c548e550 1252 -rm -f tmp-proto.[cso]
32e6d418 1253\f
1254# Remake the info files.
1255
6c76e6ec 1256doc: $(srcdir)/cpp.info $(srcdir)/gcc.info
32e6d418 1257
630c76ba 1258$(srcdir)/cpp.info: cpp.texi
bc51108a 1259 $(MAKEINFO) `echo $(srcdir)/cpp.texi | sed 's,^\./,,'`
32e6d418 1260
630c76ba 1261#$(srcdir)/gplus.info: gplus.texi
bc51108a 1262# $(MAKEINFO) `echo $(srcdir)/gplus.texi | sed 's,^\./,,'`
32e6d418 1263
630c76ba 1264$(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
1265 md.texi rtl.texi tm.texi
bc51108a 1266 $(MAKEINFO) `echo $(srcdir)/gcc.texi | sed 's,^\./,,'`
630c76ba 1267
64616031 1268# This works with GNU Make's default rule.
1269$(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
1270 md.texi rtl.texi tm.texi
1271
1272# This works with GNU Make's default rule.
1273$(srcdir)/cpp.dvi: cpp.texi
1274
630c76ba 1275$(srcdir)/INSTALL: install1.texi install.texi
bc51108a 1276 $(MAKEINFO) -D INSTALLONLY --no-header `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
32e6d418 1277\f
1278# Deletion of files made during compilation.
1279# There are four levels of this:
79f818d0 1280# `mostlyclean', `clean', `distclean' and `realclean'.
32e6d418 1281# `mostlyclean' is useful while working on a particular type of machine.
c6396a0b 1282# It deletes most, but not all, of the files made by compilation.
32e6d418 1283# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
c6396a0b 1284# `clean' deletes everything made by running `make all'.
79f818d0 1285# `distclean' also deletes the files made by config.
32e6d418 1286# `realclean' also deletes everything that could be regenerated automatically.
1287
79f818d0 1288
32e6d418 1289mostlyclean:
1290 -rm -f $(STAGESTUFF)
343505c4 1291# Clean the objc subdir if we created one.
1292 if [ -d objc ]; then \
1293 srcdir1=`cd $(srcdir); pwd`; \
8c6da369 1294 cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
343505c4 1295 else true; fi
bd594491 1296 -rm -f libobjc.a
32e6d418 1297# Delete the temporary source copies for cross compilation.
1298 -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
1299 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
1300 -rm -f $(HOST_PREFIX_1)obstack.c
1301# Delete the temp files made in the course of building libgcc.a.
590613c7 1302 -rm -f tmplibgcc* tmpcopy xlimits.h
32e6d418 1303 for name in $(LIB1FUNCS); do rm -f $${name}.c; done
1304# Delete other temporary files.
83bd2d97 1305 -rm -f tmp-float.h tmp-gcc.xtar.Z
f678532a 1306 -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
32e6d418 1307# Delete the stamp files.
1308 -rm -f stamp-* tmp-*
c6396a0b 1309# Delete debugging dump files.
32e6d418 1310 -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
c6396a0b 1311 -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
1312# Delete some files made during installation.
131b361e 1313 -rm -f specs float.h enquire SYSCALLS.c.X SYSCALLS.c
79f818d0 1314 -rm -f collect collect2 ld mips-tfile mips-tdump alloca.s
c6396a0b 1315# Delete unwanted output files from TeX.
1316 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
79f818d0 1317# Delete sorted indices we don't actually use.
1318 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
c6396a0b 1319# Delete core dumps.
8d14a5ba 1320 -rm -f core config/core
32e6d418 1321
79f818d0 1322# Delete all files made by compilation
1323# that don't exist in the distribution.
32e6d418 1324clean: mostlyclean
8bd8ea06 1325# It may not be quite desirable to delete unprotoize.c here,
1326# but the spec for `make clean' requires it.
1327# Using unprotoize.c is not quite right in the first place,
1328# but what better way is there?
840a6e8d 1329 -rm -f libgcc.a libgcc1.a libgcc2.a libgcc2.ready libgcc1.null
131b361e 1330 -rm -f *.dvi
32e6d418 1331
79f818d0 1332# Delete all files that users would normally create
1333# while building and installing GCC.
c6396a0b 1334distclean: clean
7267fd67 1335 -rm -f tm.h aux-output.c config.h md config.status tconfig.h hconfig.h
ab866dde 1336 -rm -f Makefile *.oaux
79f818d0 1337 -rm -fr stage1 stage2 stage3 stage4
c6396a0b 1338
1339# Delete anything likely to be found in the source directory
1340# that shouldn't be in the distribution.
1341extraclean: distclean
bbbdbddd 1342 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
131b361e 1343 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
a0b2dfb4 1344 -rm -f *.dvi *.oaux *.d *.Z *.tar *.xtar *diff
8d14a5ba 1345 -rm -f *lose config/*lose
3a0781a0 1346 -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
32e6d418 1347
1348# Get rid of every file that's generated from some other file.
1349# Most of these files ARE PRESENT in the GCC distribution.
c6396a0b 1350realclean: distclean
c373bd56 1351 -rm -f c-parse.y objc-parse.y
32e6d418 1352 -rm -f cp-parse.c cp-parse.h cp-parse.output
1353 -rm -f objc-parse.c objc-parse.output
32e6d418 1354 -rm -f c-parse.c c-parse.h c-parse.output
1355 -rm -f cexp.c cexp.output TAGS
c6396a0b 1356 -rm -f cpp.info* cpp.??s cpp.*aux
1357 -rm -f gcc.info* gcc.??s gcc.*aux
1358 -rm -f gplus.info* gplus.??s gplus.*aux
32e6d418 1359\f
1360# Entry points `install' and `uninstall'.
1361# Also temporarily `install-fixincludes' could replace `install-headers'.
c6396a0b 1362# Also use `install-collect2' to install collect2 when the config files don't.
32e6d418 1363
3f69fed5 1364# The semicolon is to prevent the install.sh -> install default rule
1365# from doing anything.
1366install: $(INSTALL_TARGET) ;
32e6d418 1367
1368# Copy the files of native compiler into directories where they will be run.
1369install-native: install-common install-libgcc $(INSTALL_HEADERS) \
c6396a0b 1370 install-man
32e6d418 1371
1372# Copy the files of cross compiler into directories where they will be run.
1373install-cross: install-common install-common-headers \
1374 install-man install-cross-tools install-libgcc
1375
e77fd588 1376# Do nothing while making gcc with a cross-compiler. The person who
1377# makes gcc for the target machine has to know how to put a complete
1378# gcc together by hand.
1379install-build: force
1380 @echo You have to install gcc on your target machine by hand.
1381
32e6d418 1382# Install the tools, libraries and header files for the target machine
1383# where cross-compilation will look for them.
1384# Use tooldir to find them.
1385install-cross-tools: install-dir
1386# The first if makes this a no-op except for a cross compiler.
1387# The /. after the dirname causes test to follow symlinks.
1388# Before making a link or an indirection script,
1389# we verify the desired file does not already exist.
1390# If a symlink does exist, then making a symlink would certainly fail,
1391# leading us to overwrite the real file through the symlink.
1392 -if [ -f gcc-cross ] ; \
1393 then \
1394 if [ -d $(tooldir)/. ] ; \
1395 then \
5e03c63d 1396 for file in as $(REAL_LD_NAME) ar nm ranlib; do \
32e6d418 1397 if [ -f $(libsubdir)/$$file ] ; \
1398 then true; \
1399 else \
fbee7de1 1400 rm -rf $(libsubdir)/$$file; \
32e6d418 1401 $(SYMLINK) $(tooldir)/bin/$$file $(libsubdir)/$$file \
1402 || (echo "#!/bin/sh"; echo $(tooldir)/bin/$$file "$$@") > $(libsubdir)/$$file; \
1403 fi; \
1404 done; \
1405 for file in $(tooldir)/lib/*; do \
1406 if [ -f $$file ] ; \
1407 then \
1408 if [ -f $(libsubdir)/`basename $$file` ] ; \
1409 then true; \
1410 else \
fbee7de1 1411 rm -rf $(libsubdir)/`basename $$file`; \
32e6d418 1412 $(SYMLINK) $$file $(libsubdir)/`basename $$file` \
1413 || $(INSTALL_DATA) $$file $(libsubdir)/`basename $$file`; \
1414 fi; \
1415 else true; \
1416 fi; \
1417 done; \
1418 if [ -d $(tooldir)/include/. ] ; then \
fbee7de1 1419 rm -rf $(libsubdir)/sys-include; \
32e6d418 1420 $(SYMLINK) $(tooldir)/include $(libsubdir)/sys-include \
1421 || (if [ -d $(libsubdir)/sys-include ] ; then true ; else mkdir $(libsubdir)/sys-include ; fi; \
83bd2d97 1422 (cd $(tooldir)/include; tar cf - .) | (cd $(libsubdir)/sys-include; tar xpf -)); \
32e6d418 1423 else true; fi; \
1424 else true; \
1425 fi; \
1426 else true; \
1427 fi;
1428
1429# Run this on the target machine
1430# to finish installation of cross compiler.
1431install-cross-rest: install-float-h-cross
1432
1433# Install float.h for cross compiler.
1434# Run this on the target machine!
1435install-float-h-cross:
f32abccb 1436# I don't see what this line is for.
1437# If you see what good it does, please tell me. -- rms.
1438 if [ -f enquire ] ; then true; else false; fi
1439 -./enquire -f > $(tmpdir)/float.h
32e6d418 1440 -rm -f $(libsubdir)/include/float.h
f32abccb 1441 $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
1442 -rm -f $(tmpdir)/float.h
32e6d418 1443 chmod a-x $(libsubdir)/include/float.h
1444
1445# Create the installation directory.
1446install-dir:
2388f67d 1447 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
1448 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; fi
1449 -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; fi
1450 -if [ -d $(libdir)/gcc-lib/$(target) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target) ; fi
1451 -if [ -d $(libdir)/gcc-lib/$(target)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version) ; fi
630c76ba 1452 -if [ -d $(libdir)/gcc-lib/$(target)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version)/include ; fi
2388f67d 1453 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
69184f78 1454 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
3ecfbab6 1455 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
1456 -if [ -f gcc-cross ] ; \
10b27eb7 1457 then \
fea00636 1458 if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; fi ; \
10b27eb7 1459 if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; fi ; \
3ecfbab6 1460 else true; \
1461 fi
32e6d418 1462# We don't use mkdir -p to create the parents of mandir,
1463# because some systems don't support it.
1464# Instead, we use this technique to create the immediate parent of mandir.
2388f67d 1465 -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
32e6d418 1466 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
1467 -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
1468
1469# Install the compiler executables built during cross compilation.
90c04b70 1470# Deps on $(srcdir)/g++ $(srcdir)/c++ would be natural here,
1471# but the latter would get confused with the target `c++'.
1472install-common: native install-dir xgcc $(EXTRA_PARTS)
32e6d418 1473 for file in $(COMPILERS); do \
1474 if [ -f $$file ] ; then \
1475 rm -f $(libsubdir)/$$file; \
1476 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1477 else true; \
1478 fi; \
1479 done
79f818d0 1480 for file in $(EXTRA_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
32e6d418 1481 if [ x"$$file" != x.. ]; then \
1482 rm -f $(libsubdir)/$$file; \
1483 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1484 else true; fi; \
1485 done
8a4b1e01 1486# Don't mess with specs if it doesn't exist yet.
94c53b91 1487 -if [ -f specs ] ; then \
1488 rm -f $(libsubdir)/specs; \
8a4b1e01 1489 $(INSTALL_DATA) specs $(libsubdir)/specs; \
1490 fi
32e6d418 1491# Install the driver program as gcc-$(target)
1492# and also as either gcc (if native) or $(tooldir)/bin/gcc.
1493 -if [ -f gcc-cross ] ; then \
c6396a0b 1494 $(INSTALL_PROGRAM) gcc-cross $(bindir)/gcc-$(target); \
32e6d418 1495 if [ -d $(tooldir)/bin/. ] ; then \
1496 rm -f $(tooldir)/bin/gcc; \
1497 $(INSTALL_PROGRAM) gcc-cross $(tooldir)/bin/gcc; \
32e6d418 1498 else true; fi; \
1499 else \
1500 rm -f $(bindir)/gcc; \
77a164d8 1501 $(INSTALL_PROGRAM) xgcc $(bindir)/gcc; \
32e6d418 1502 rm -f $(bindir)/gcc-$(target)-1; \
1503 ln $(bindir)/gcc $(bindir)/gcc-$(target)-1; \
1504 mv $(bindir)/gcc-$(target)-1 $(bindir)/gcc-$(target); \
1505 fi
9cee99f7 1506# Install protoize if it was compiled.
ae0fea3a 1507 -if [ -f protoize ]; \
9cee99f7 1508 then \
1509 rm -f $(bindir)/protoize; \
1510 $(INSTALL_PROGRAM) protoize $(bindir)/protoize; \
1511 rm -f $(bindir)/unprotoize; \
1512 $(INSTALL_PROGRAM) unprotoize $(bindir)/unprotoize; \
1513 rm -f $(libsubdir)/SYSCALLS.c.X; \
1514 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
1515 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
1516 fi
c548e550 1517 -rm -f $(bindir)/c++
32e6d418 1518 $(INSTALL_PROGRAM) $(srcdir)/c++ $(bindir)/c++
c548e550 1519 -rm -f $(bindir)/g++
32e6d418 1520 $(INSTALL_PROGRAM) $(srcdir)/g++ $(bindir)/g++
1521 -rm -f $(libsubdir)/cpp
1522 $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
1523
32e6d418 1524# Install the man pages.
77a164d8 1525install-man: install-dir $(srcdir)/gcc.1 $(srcdir)/cccp.1 $(srcdir)/g++.1
32e6d418 1526 -rm -f $(mandir)/gcc$(manext)
ab866dde 1527 -$(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/gcc$(manext)
1528 -chmod a-x $(mandir)/gcc$(manext)
c6396a0b 1529 -rm -f $(mandir)/cccp$(manext)
ab866dde 1530 -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
1531 -chmod a-x $(mandir)/cccp$(manext)
ab866dde 1532 -$(INSTALL_DATA) $(srcdir)/g++.1 $(mandir)/g++$(manext)
1533 -chmod a-x $(mandir)/g++$(manext)
32e6d418 1534
1535# Install the library.
807a86f6 1536install-libgcc: libgcc.a install-dir
32e6d418 1537 -if [ -f libgcc.a ] ; then \
1538 rm -f $(libsubdir)/libgcc.a; \
1539 $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
1540 if $(RANLIB_TEST) ; then \
1541 (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
1542 chmod a-x $(libsubdir)/libgcc.a; \
1543 else true; fi
1544
f32abccb 1545# Install the objc run time library.
1546install-libobjc: libobjc.a install-dir
1547 -if [ -f libobjc.a ] ; then \
1548 rm -f $(libsubdir)/libobjc.a; \
1549 $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
1550 if $(RANLIB_TEST) ; then \
1551 (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
1552 chmod a-x $(libsubdir)/libobjc.a; \
1553 else true; fi
1554
32e6d418 1555# Install all the header files for native compiler.
1556install-headers: install-common-headers install-float-h install-limits-h
1557
1558# Install float.h for native compiler.
630c76ba 1559install-float-h: float.h install-dir
32e6d418 1560 -rm -f $(libsubdir)/include/float.h
1561 $(INSTALL_DATA) float.h $(libsubdir)/include/float.h
1562 chmod a-x $(libsubdir)/include/float.h
1563
6213d862 1564# Install limits.h.
3f69fed5 1565install-limits-h: xlimits.h install-dir
1566 -rm -f $(libsubdir)/include/limits.h
1567 $(INSTALL_DATA) xlimits.h $(libsubdir)/include/limits.h
32e6d418 1568 chmod a-x $(libsubdir)/include/limits.h
32e6d418 1569
1570# Install the fixed headers that are the same for all machines.
90c04b70 1571install-common-headers: install-dir $(USER_H) gvarargs.h gstdarg.h gstddef.h gsyslimits.h assert.h
2388f67d 1572 -if [ -d $(libsubdir)/include ] ; then true ; else mkdir $(libsubdir)/include ; fi
32e6d418 1573 -chmod ugo+rx $(libsubdir)/include
1574# Must compute $(libsubdir) before the cd; the awk script won't work after.
1575 shelllibsubdir=$(libsubdir); \
1576 cd $(srcdir); \
1577 for file in $(USER_H); do \
1578 rm -f $$shelllibsubdir/include/`basename $$file`; \
1579 $(INSTALL_DATA) `basename $$file` $$shelllibsubdir/include/`basename $$file`; \
1580 chmod a-x $$shelllibsubdir/include/`basename $$file`; \
1581 done
88d74741 1582# Put assert.h in /usr/local/include, so it won't override GNU libc's assert.h.
1583# Don't replace the assert.h already there if it is not from GCC.
eb5a0caa 1584# This code would be simpler if it tested for -f ... && ! grep ...
1585# but supposedly the ! operator is missing in sh on some systems.
1586 if [ -f $(assertdir)/assert.h ]; \
1587 then \
1588 if grep "__eprintf" $(assertdir)/assert.h; \
a953974c 1589 then \
eb5a0caa 1590 rm -f $(assertdir)/assert.h; \
1591 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 1592 chmod a-x $(assertdir)/assert.h; \
eb5a0caa 1593 else true; \
1594 fi; \
2ba284c3 1595 else \
db9a0b19 1596 rm -f $(assertdir)/assert.h; \
1597 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 1598 chmod a-x $(assertdir)/assert.h; \
2ba284c3 1599 fi
90c04b70 1600 -rm -f $(libsubdir)/include/syslimits.h
1601 $(INSTALL_DATA) $(srcdir)/gsyslimits.h $(libsubdir)/include/syslimits.h
1602 chmod a-x $(libsubdir)/include/syslimits.h
32e6d418 1603 -rm -f $(libsubdir)/include/varargs.h
1604 $(INSTALL_DATA) $(srcdir)/gvarargs.h $(libsubdir)/include/varargs.h
1605 chmod a-x $(libsubdir)/include/varargs.h
1606 -rm -f $(libsubdir)/include/stdarg.h
1607 $(INSTALL_DATA) $(srcdir)/gstdarg.h $(libsubdir)/include/stdarg.h
1608 chmod a-x $(libsubdir)/include/stdarg.h
1609 -rm -f $(libsubdir)/include/stddef.h
1610 $(INSTALL_DATA) $(srcdir)/gstddef.h $(libsubdir)/include/stddef.h
1611 chmod a-x $(libsubdir)/include/stddef.h
c59af377 1612# This is turned off because fixinc.svr4 can now get it directly from srcdir.
1613## Copy byteorder.h into the object file directory
1614## so that fixinc.svr4 can get at it if necessary.
1615## If the dirs are the same, this won't do anything.
1616## Delete file first in case it is read-only
1617# -if [ x`cd $(srcdir);pwd` != x`pwd` ]; then rm -f byteorder.h; else true; fi
1618# -cp $(srcdir)/byteorder.h . > /dev/null 2>&1
32e6d418 1619
1620# $(libsubdir)/include:
2388f67d 1621# -if [ -d $(libsubdir)/include ] ; then true ; else mkdir $(libsubdir)/include ; fi
32e6d418 1622# -chmod ugo+rx $(libsubdir)/include
1623
1624# This appears not to work. It isn't clear how to fix it.
c6396a0b 1625# $(libsubdir)/include/README: $(libsubdir)/include $(srcdir)/$(FIXINCLUDES)
1626# LIB=$(libsubdir)/include $(srcdir)/$(FIXINCLUDES)
32e6d418 1627# $(INSTALL_DATA) $(srcdir)/fixincludes-README $@
1628# chmod a-x $@
1629
1630# Run fixincludes in the proper directory.
1631install-fixincludes: install-headers
1632 rm -rf $(libsubdir)/tmp
1633 mkdir $(libsubdir)/tmp
1634# Move aside the headers that come from GCC; delete all else.
c6396a0b 1635# The sed command gets just the last file name component;
1636# this is necessary because VPATH could add a dirname.
1637# Using basename would be simpler, but some systems don't have it.
1638 cd $(libsubdir)/include; \
1639 for file in $(INSTALLED_H); do \
1640 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
1641 mv $$realfile ../tmp; \
1642 done; \
1643 rm -rf *
32e6d418 1644# Install fixed copies of system files.
7c51f022 1645 for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
f32abccb 1646 if [ -d $$dir ]; \
1647 then \
1648 $(srcdir)/$(FIXINCLUDES) $(libsubdir)/include $$dir $(srcdir); \
bc454a9d 1649 else true; fi; \
106a27e5 1650 done
63df38f3 1651 -cd $(libsubdir)/include; \
1652 if [ -f limits.h ]; then \
1653 rm -f ../tmp/syslimits.h; \
1654 cp limits.h ../tmp/syslimits.h; \
1655 else true; fi
32e6d418 1656# Bring back gcc's header files.
1657 cd $(libsubdir)/include; mv ../tmp/* .; rmdir ../tmp
1658# Install the README
1659 $(INSTALL_DATA) $(srcdir)/README-fixinc $(libsubdir)/include/README
1660 chmod a-x $(libsubdir)/include/README
1661
c6396a0b 1662# Use this target to install the program `collect2' under the name `ld'.
1663install-collect2: collect2
1664 $(INSTALL_PROGRAM) collect2 $(libsubdir)/ld
1665# Install the driver program as $(libsubdir)/gcc for collect2.
77a164d8 1666 $(INSTALL_PROGRAM) xgcc $(libsubdir)/gcc
c6396a0b 1667
32e6d418 1668# Cancel installation by deleting the installed files.
1669uninstall:
1670 -rm -rf $(libsubdir)
1671 -rm -rf $(bindir)/gcc
32e6d418 1672 -rm -rf $(bindir)/protoize
1673 -rm -rf $(bindir)/unprotoize
1674 -rm -rf $(mandir)/gcc$(manext)
c6396a0b 1675 -rm -rf $(mandir)/cccp$(manext)
32e6d418 1676 -rm -rf $(mandir)/protoize$(manext)
1677 -rm -rf $(mandir)/unprotoize$(manext)
1678\f
1679# These exist for maintenance purposes.
1680
1681# Update the tags table.
1682TAGS: force
1683 cd $(srcdir); \
1684 mkdir temp; \
8c1b3852 1685 mv -f c-parse.[ch] cp-parse.[ch] objc-parse.c cexp.c =*.[chy] temp; \
32e6d418 1686 etags *.y *.h *.c; \
1687 mv temp/* .; \
1688 rmdir temp
1689
1690# Create the distribution tar file.
1691#dist: gcc-$(version).tar.Z
1692dist: gcc.xtar.Z
1693
c6396a0b 1694gcc.xtar.Z: gcc.xtar
32e6d418 1695 compress < gcc.xtar > tmp-gcc.xtar.Z
1696 mv tmp-gcc.xtar.Z gcc.xtar.Z
1697
1698#gcc-$(version).tar.Z: gcc-$(version).tar
1699# compress < gcc-$(version).tar > gcc-$(version).tar.Z
1700
1701#gcc-$(version).tar:
6c76e6ec 1702gcc.xtar: distdir
1703# Make the distribution.
1704 tar chf gcc.xtar gcc-$(version)
1705
1706distdir: doc $(srcdir)/INSTALL c-parse.y objc-parse.y
630c76ba 1707 if grep -s "for version ${version}" gcc.texi; \
1708 then true; \
0dce1b01 1709 else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
630c76ba 1710 fi
131b361e 1711# Update the version number in README
1712 awk '$$1 " " $$2 " " $$3 == "This directory contains" \
1713 { $$6 = version; print $$0 } \
1714 $$1 " " $$2 " " $$3 != "This directory contains"' \
1715 version=$(version) README > tmp.README
1716 mv tmp.README README
c6396a0b 1717 -rm -rf gcc-$(version) tmp
32e6d418 1718# Put all the files in a temporary subdirectory
1719# which has the name that we want to have in the tar file.
c6396a0b 1720 mkdir tmp
1721 mkdir tmp/config
4f1fd857 1722 mkdir tmp/objc
c6396a0b 1723 for file in *[0-9a-zA-Z+]; do \
131b361e 1724 ln $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
c6396a0b 1725 done
1726 cd config; \
1727 for file in *[0-9a-zA-Z+]; do \
131b361e 1728 ln $$file ../tmp/config >/dev/null 2>&1 || cp $$file ../tmp/config; \
32e6d418 1729 done
4f1fd857 1730 cd objc; \
1731 for file in *[0-9a-zA-Z+]; do \
e77fd588 1732 ln $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
4f1fd857 1733 done
c6396a0b 1734 ln .gdbinit tmp
1735 mv tmp gcc-$(version)
32e6d418 1736# Get rid of everything we don't want in the distribution.
c6396a0b 1737 cd gcc-$(version); make -f Makefile.in extraclean
32e6d418 1738
1739# do make -f ../gcc/Makefile maketest DIR=../gcc
1740# in the intended test directory to make it a suitable test directory.
1741# THIS IS OBSOLETE; use the -srcdir operand in configure instead.
1742maketest:
1743 ln -s $(DIR)/*.[chy] .
1744 ln -s $(DIR)/configure .
1745 ln -s $(DIR)/*.def .
1746 -rm -f =*
1747 ln -s $(DIR)/.gdbinit .
1748 ln -s $(DIR)/$(FIXINCLUDES) .
1749 -ln -s $(DIR)/bison.simple .
1750 ln -s $(DIR)/config .
1751 ln -s $(DIR)/move-if-change .
1752# The then and else were swapped to avoid a problem on Ultrix.
1753 if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile .; else false; fi
1754 -rm tm.h aux-output.c config.h md
1755 make clean
1756# You must then run config to set up for compilation.
77a164d8 1757
41f63c60 1758bootstrap: force
1759# Only build the C compiler for stage1, because that is the only one that
1760# we can guarantee will build with the native compiler, and also it is the
1761# only thing useful for building stage2.
1762 $(MAKE) LANGUAGES=c
32e6d418 1763 $(MAKE) stage1
c6396a0b 1764# This used to define ALLOCA as empty, but that would lead to bad results
1765# for a subsequent `make install' since that would not have ALLOCA empty.
1766# To prevent `make install' from compiling alloca.o and then relinking cc1
1767# because alloca.o is newer, we permit these recursive makes to compile
1768# alloca.o. Then cc1 is newer, so it won't have to be relinked.
b3781cc4 1769 $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1770 $(MAKE) stage2
b3781cc4 1771 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1772
1773bootstrap2: force
b3781cc4 1774 $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1775 $(MAKE) stage2
b3781cc4 1776 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1777
1778bootstrap3: force
b3781cc4 1779 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1780
48c6936b 1781# Compare the object files in the current directory with those in the
1782# stage2 directory.
1783
1784compare: force
1785 for file in *.o; do \
77a164d8 1786 tail +16c $$file > tmp-foo1; \
1787 tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
1788 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
48c6936b 1789 done
1790 -rm -f tmp-foo*
1791
1792# Similar, but compare with stage3 directory
1793compare3: force
1794 for file in *.o; do \
77a164d8 1795 tail +16c $$file > tmp-foo1; \
1796 tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
1797 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
48c6936b 1798 done
1799 -rm -f tmp-foo*
1800
32e6d418 1801# Copy the object files from a particular stage into a subdirectory.
1802stage1: force
c6396a0b 1803 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
32e6d418 1804 -mv $(STAGESTUFF) stage1
1805 -rm -f stage1/libgcc.a
1806 -cp libgcc.a stage1
1807 -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
1808
1809stage2: force
c6396a0b 1810 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
32e6d418 1811 -mv $(STAGESTUFF) stage2
1812 -rm -f stage2/libgcc.a
1813 -cp libgcc.a stage2
1814 -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
1815
1816stage3: force
2388f67d 1817 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
32e6d418 1818 -mv $(STAGESTUFF) stage3
1819 -rm -f stage3/libgcc.a
1820 -cp libgcc.a stage3
1821 -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
1822
1823stage4: force
2388f67d 1824 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
32e6d418 1825 -mv $(STAGESTUFF) stage4
1826 -rm -f stage4/libgcc.a
1827 -cp libgcc.a stage4
1828 -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
1829
1830# Copy just the executable files from a particular stage into a subdirectory,
1831# and delete the object files. Use this if you're just verifying a version
1832# that is pretty sure to work, and you are short of disk space.
1833risky-stage1: force
2388f67d 1834 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
32e6d418 1835 -mv cc1 cpp cccp gcc stage1
1836 -rm -f stage1/libgcc.a
1837 -cp libgcc.a stage1 && $(RANLIB) stage1/libgcc.a
1838 -make clean
1839
1840risky-stage2: force
2388f67d 1841 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
32e6d418 1842 -mv cc1 cpp cccp gcc stage2
1843 -rm -f stage2/libgcc.a
1844 -cp libgcc.a stage2 && $(RANLIB) stage2/libgcc.a
1845 -make clean
1846
1847risky-stage3: force
2388f67d 1848 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
32e6d418 1849 -mv cc1 cpp cccp gcc stage3
1850 -rm -f stage3/libgcc.a
1851 -cp libgcc.a stage3 && $(RANLIB) stage3/libgcc.a
1852 -make clean
1853
1854risky-stage4: force
2388f67d 1855 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
32e6d418 1856 -mv cc1 cpp cccp gcc stage4
1857 -rm -f stage4/libgcc.a
1858 -cp libgcc.a stage4 && $(RANLIB) stage4/libgcc.a
1859 -make clean
1860
1861#In GNU Make, ignore whether `stage*' exists.
1862.PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
1863.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
1864
1865force: