home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / g77-0.5.15-src.tgz / tar.out / fsf / g77 / Makefile.in < prev    next >
Makefile  |  1996-09-28  |  93KB  |  2,402 lines

  1. # Makefile for GNU C compiler.
  2. #   Copyright (C) 1987, 88, 90, 91, 92, 93, 1994 Free Software Foundation, Inc.
  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,
  22. # uninstall, TAGS, mostlyclean, clean, distclean, realclean,
  23. # stage1, stage2, stage3, stage4.
  24.  
  25. # Suppress smart makes who think they know how to automake Yacc files
  26. .y.c:
  27.  
  28. # Variables that exist for you to override.
  29. # See below for how to change them for certain systems.
  30.  
  31. # List of language subdirectories.
  32. # This is overridden by configure.
  33. SUBDIRS =
  34.  
  35. # Selection of languages to be made.
  36. # This is overridden by configure.
  37. LANGUAGES = c objective-c proto
  38.  
  39. ALLOCA =
  40. ALLOCA_FLAGS =
  41. ALLOCA_FINISH = true
  42.  
  43. # Various ways of specifying flags for compilations:  
  44. # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
  45. # BOOT_CFLAGS is the value of CFLAGS to pass
  46. # to the stage2 and stage3 compilations
  47. # XCFLAGS is used for most compilations but not when using the GCC just built.
  48. XCFLAGS =
  49. CFLAGS = -g
  50. BOOT_CFLAGS = -O $(CFLAGS)
  51. # These exists to be overridden by the x-* and t-* files, respectively.
  52. X_CFLAGS =
  53. T_CFLAGS =
  54.  
  55. X_CPPFLAGS =
  56. T_CPPFLAGS =
  57.  
  58. CC = cc
  59. BISON = bison
  60. BISONFLAGS =
  61. LEX = flex
  62. LEXFLAGS =
  63. AR = ar
  64. OLDAR_FLAGS = qc
  65. AR_FLAGS = rc
  66. SHELL = /bin/sh
  67. # on sysV, define this as cp.
  68. INSTALL = cp
  69. # These permit overriding just for certain files.
  70. INSTALL_PROGRAM = $(INSTALL)
  71. INSTALL_DATA = $(INSTALL)
  72. SYMLINK = cp
  73. # Some systems don't support hardlinks.  For this case, a simple copy
  74. # will achieve the same results for our purposes.
  75. HARDLINK = cp
  76. MAKEINFO = makeinfo
  77. TEXI2DVI = texi2dvi
  78. # For GNUmake: let us decide what gets passed to recursive makes.
  79. MAKEOVERRIDES =
  80.  
  81. # Define this as & to perform parallel make on a Sequent.
  82. # Note that this has some bugs, and it seems currently necessary 
  83. # to compile all the gen* files first by hand to avoid erroneous results.
  84. P =
  85.  
  86. # How to invoke ranlib.
  87. RANLIB = ranlib
  88. # Test to use to see whether ranlib exists on the system.
  89. RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
  90.  
  91. # Compiler to use for compiling libgcc1.a.
  92. # OLDCC should not be the GNU C compiler,
  93. # since that would compile typical libgcc1.a functions such as mulsi3
  94. # into infinite recursions.
  95. OLDCC = cc
  96.  
  97. # CFLAGS for use with OLDCC, for compiling libgcc1.a.
  98. # NOTE: -O does not work on some Unix systems!
  99. CCLIBFLAGS = -O
  100.  
  101. # Version of ar to use when compiling libgcc1.a.
  102. OLDAR = ar
  103.  
  104. # Target to use when installing include directory.  Either
  105. # install-headers-tar install-headers-cpio, or install-headers-cp.
  106. INSTALL_HEADERS_DIR = install-headers-tar
  107.  
  108. # The GCC to use for compiling libgcc2.a, enquire, and cross-test.
  109. # Usually the one we just built.
  110. # Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
  111. XGCC = xgcc
  112. GCC_FOR_TARGET = ./$(XGCC) -B./
  113.  
  114. # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
  115. # It omits XCFLAGS, and specifies -B./.
  116. # It also specifies -I./include to find, e.g., stddef.h.
  117. GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) -I./include
  118.  
  119. # Special flags for compiling enquire.
  120. # We disable optimization to make floating point more reliable.
  121. ENQUIRE_CFLAGS = -DNO_MEM -DNO_LONG_DOUBLE_IO -O0
  122. ENQUIRE_LDFLAGS = $(LDFLAGS)
  123.  
  124. # Tools to use when building a cross-compiler.
  125. # These are used because `configure' appends `cross-make'
  126. # to the makefile when making a cross-compiler.
  127.  
  128. TARGET_TOOLPREFIX = $(tooldir)/bin/
  129. AR_FOR_TARGET = $(TARGET_TOOLPREFIX)ar
  130. AR_FOR_TARGET_FLAGS = rc
  131. RANLIB_FOR_TARGET = $(TARGET_TOOLPREFIX)ranlib
  132. RANLIB_TEST_FOR_TARGET = [ -f $(TARGET_TOOLPREFIX)ranlib ]
  133.  
  134. # Dir to search for system headers.  Overridden by cross-make.
  135. SYSTEM_HEADER_DIR = /usr/include
  136.  
  137. # Control whether to run fixproto.
  138. STMP_FIXPROTO = stmp-fixproto
  139.  
  140. # There may be a premade insn-attrtab.c for this machine.
  141. # (You could rebuild it with genattrtab as usual, but it takes a long time.)
  142. # PREMADE_ATTRTAB is the file name of the file to use.
  143. # PREMADE_ATTRTAB_MD is the md file it corresponds to.
  144. PREMADE_ATTRTAB_MD = Makefile  # Guaranteed not to cmp equal to md.
  145. PREMADE_ATTRTAB = 
  146.  
  147. target= ... `configure' substitutes actual target name here.
  148. xmake_file= ... `configure' substitutes actual x- file name here.
  149. tmake_file= ... `configure' substitutes actual t- file name here.
  150. version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
  151. mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c`
  152.  
  153. # Directory where sources are, from where we are.
  154. srcdir = .
  155. # Common prefix for installation directories.
  156. # NOTE: This directory must exist when you start installation.
  157. prefix = /ade
  158. # Directory in which to put localized header files. On the systems with
  159. # gcc as the native cc, `local_prefix' may not be `prefix' which is
  160. # `/usr'.
  161. # Similar considerations apply for toolkits located on non-writable storage,
  162. # such as CD-ROM, where we need a completely separate place to put local
  163. # include files.
  164. # NOTE: local_prefix *should not* default from prefix.
  165. local_prefix = /ade
  166. # Directory in which to put host dependent programs and libraries
  167. exec_prefix = $(prefix)
  168. # Directory in which to put the executable for the command `gcc'
  169. bindir = $(exec_prefix)/bin
  170. # Directory in which to put the directories used by the compiler.
  171. libdir = $(exec_prefix)/lib
  172. # Directory in which the compiler finds executables, libraries, etc.
  173. libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
  174. # Directory in which the compiler finds g++ includes.
  175. gxx_include_dir= $(libdir)/g++-include
  176. # Directory to search for site-specific includes.
  177. includedir = $(local_prefix)/include
  178. # assertdir is overridden in cross-make.
  179. # (But this currently agrees with what is in cross-make.)
  180. assertdir = $(tooldir)/include
  181. # where the info files go
  182. infodir = $(prefix)/info
  183. # Extension (if any) to put in installed man-page filename.
  184. manext = .1
  185. # Directory in which to put man pages.
  186. mandir = $(prefix)/man/man1
  187. # Directory in which to find other cross-compilation tools and headers.
  188. # Used in install-cross.
  189. tooldir = $(exec_prefix)/$(target)
  190. # Dir for temp files.
  191. tmpdir = /tmp
  192.  
  193. # Additional system libraries to link with.
  194. CLIB=
  195.  
  196. # Change this to a null string if obstacks are installed in the
  197. # system library.
  198. OBSTACK=obstack.o
  199.  
  200. # Specify the rule for actually making libgcc.a,
  201. LIBGCC = libgcc.a
  202. # and the rule for installing it.
  203. INSTALL_LIBGCC = install-libgcc
  204.  
  205. # Specify the rule for actually making libgcc1.a.
  206. # The value may be empty; that means to do absolutely nothing
  207. # with or for libgcc1.a.
  208. LIBGCC1 = libgcc1.a
  209.  
  210. # Specify the rule for making libgcc1.a for a cross-compiler.
  211. # The default rule assumes that libgcc1.a is supplied by the user.
  212. CROSS_LIBGCC1 = libgcc1.cross
  213.  
  214. # Specify the rule for actually making libgcc2.a.
  215. LIBGCC2 = libgcc2.a
  216.  
  217. # Options to use when compiling libgcc2.a.
  218. # -g1 causes output of debug info only for file-scope entities.
  219. # we use this here because that should be enough, and also
  220. # so that -g1 will be tested.
  221. LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) -g1
  222.  
  223. # Additional options to use when compiling libgcc2.a.
  224. # Some targets override this to -Iinclude
  225. LIBGCC2_INCLUDES =
  226.  
  227. # Things which must be built before building libgcc2.a.
  228. # Some targets override this to stmp-int-hdrs
  229. LIBGCC2_DEPS =
  230.  
  231. # Enquire target (This is a variable so that a target can choose not to
  232. # build it.)
  233. ENQUIRE = enquire
  234.  
  235. # Cross-test target (must also be overridable for a target)
  236. CROSS_TEST = cross-test
  237.  
  238. # List of extra executables that should be compiled for this target machine
  239. # that are used for compiling from source code to object code.
  240. # The rules for compiling them should be in the t-* file for the machine.
  241. EXTRA_PASSES =
  242.  
  243. # Like EXTRA_PASSES, but these are used when linking.
  244. EXTRA_PROGRAMS = 
  245.  
  246. # List of extra object files that should be compiled for this target machine.
  247. # The rules for compiling them should be in the t-* file for the machine.
  248. EXTRA_PARTS =
  249.  
  250. # List of extra object files that should be compiled and linked with
  251. # compiler proper (cc1, cc1obj, cc1plus).
  252. EXTRA_OBJS =
  253.  
  254. # List of additional header files to install.
  255. # Often this is edited directly by `configure'.
  256. EXTRA_HEADERS =
  257.  
  258. # Set this to `ld' to enable use of collect2.
  259. # USE_COLLECT2 =
  260. # It is convenient for configure to add the assignment at the beginning,
  261. # so don't override it here.
  262.  
  263. # List of extra C and assembler files to add to libgcc1.a.
  264. # Assembler files should have names ending in `.asm'.
  265. LIB1FUNCS_EXTRA = 
  266.  
  267. # List of extra C and assembler files to add to libgcc2.a.
  268. # Assembler files should have names ending in `.asm'.
  269. LIB2FUNCS_EXTRA = 
  270.  
  271. # Default float.h source to use for cross-compiler.
  272. CROSS_FLOAT_H=float.h-cross
  273.  
  274. # Program to convert libraries.
  275. LIBCONVERT = 
  276.  
  277. # Control whether header files are installed.
  278. INSTALL_HEADERS=install-headers
  279.  
  280. # Options for tar when copying trees.  So HPUX can override it.
  281. TAROUTOPTS = xpBf
  282.  
  283. # Select which version of fixincludes to use (I.E. regular versus SVR4)
  284. # This value is overridden directly by configure.
  285. FIXINCLUDES=fixincludes
  286.  
  287. # Additional directories of header files to run fixincludes on.
  288. # These should be directories searched automatically by default
  289. # just as /usr/include is.
  290. # *Do not* use this for directories that happen to contain 
  291. # header files, but are not searched automatically by default.
  292. # On most systems, this is empty.
  293. OTHER_FIXINCLUDES_DIRS=
  294.  
  295. # List of things which should already be built whenever we try to use xgcc
  296. # to compile anything (without linking).
  297. GCC_PASSES=xgcc cc1 cpp $(EXTRA_PASSES)
  298.  
  299. # List of things which should already be built whenever we try to use xgcc
  300. # to link anything.
  301. GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
  302.  
  303. # Directory to link to, when using the target `maketest'.
  304. DIR = ../gcc
  305.  
  306. # Guaranteed to not exist when not passing md through cpp.
  307. # This value is overridden directly by configure.
  308. MD_FILE = md-cpp-not-used
  309.  
  310. # Flags to use when cross-building GCC.
  311. # Prefix to apply to names of object files when using them
  312. # to run on the machine we are compiling on.
  313. HOST_PREFIX=
  314. # Prefix to apply to names of object files when compiling them
  315. # to run on the machine we are compiling on.
  316. # The default for this variable is chosen to keep these rules 
  317. # out of the way of the other rules for compiling the same source files.
  318. HOST_PREFIX_1=loser-
  319. HOST_CC=$(CC)
  320. HOST_CFLAGS=$(ALL_CFLAGS)
  321. HOST_CLIB=$(CLIB)
  322. HOST_LDFLAGS=$(LDFLAGS)
  323. HOST_CPPFLAGS=$(ALL_CPPFLAGS)
  324. HOST_ALLOCA=$(ALLOCA)
  325. HOST_MALLOC=$(MALLOC)
  326. HOST_OBSTACK=$(OBSTACK)
  327.  
  328. # Choose the real default target.
  329. ALL=all.internal
  330.  
  331. # Choose the real install target.
  332. INSTALL_TARGET=install-normal
  333.  
  334. # Source for float.h.  Overridden by cross-make.
  335. FLOAT_H=float.h-nat
  336.  
  337. # Extra symbols for fixproto to define when parsing headers.
  338. FIXPROTO_DEFINES = 
  339.  
  340. # End of variables for you to override.
  341.  
  342. # Definition of `all' is here so that new rules inserted by sed
  343. # do not specify the default target.
  344. # The real definition is under `all.internal' (for native compilers)
  345. # or `all.cross' (for cross compilers).
  346. all: all.indirect
  347.  
  348. # This tells GNU Make version 3 not to put all variables in the environment.
  349. .NOEXPORT:
  350.  
  351. # sed inserts variable overrides after the following line.
  352. ####target overrides
  353. ####host overrides
  354. ####cross overrides
  355. ####build overrides
  356.  
  357. # Now figure out from those variables how to compile and link.
  358.  
  359. all.indirect: $(ALL)
  360.  
  361. # IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
  362. # ??? IN_GCC should be obsolete now.
  363. INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
  364.  
  365. # This is the variable actually used when we compile.
  366. ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
  367.  
  368. # Likewise.
  369. ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
  370.  
  371. # Even if ALLOCA is set, don't use it if compiling with GCC.
  372. USE_ALLOCA= ` case "${CC}" in "${OLDCC}") echo "${ALLOCA}" ;; esac `
  373. USE_HOST_ALLOCA= ` case "${HOST_CC}"@"${HOST_ALLOCA}" in "${OLDCC}"@?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
  374. USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
  375. USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
  376.  
  377. # Dependency on obstack, alloca, malloc or whatever library facilities
  378. # are not installed in the system libraries.
  379. # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
  380. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  381.  
  382. # Likewise, for use in the tools that must run on this machine
  383. # even if we are cross-building GCC.
  384. # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
  385. HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC)
  386.  
  387. # How to link with both our special library facilities
  388. # and the system's installed libraries.
  389. LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(CLIB)
  390.  
  391. # Likewise, for use in the tools that must run on this machine
  392. # even if we are cross-building GCC.
  393. HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC)  \
  394.         $(HOST_CLIB)
  395.  
  396. HOST_RTL = $(HOST_PREFIX)rtl.o
  397. HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
  398. HOST_PRINT = $(HOST_PREFIX)print-rtl.o
  399.  
  400. # Specify the directories to be searched for header files.
  401. # Both . and srcdir are used, in that order,
  402. # so that tm.h and config.h will be found in the compilation
  403. # subdirectory rather than in the source directory.
  404. INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
  405.  
  406. # Always use -I$(srcdir)/config when compiling.
  407. .c.o:
  408.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
  409.  
  410. # This tells GNU make version 3 not to export all the variables
  411. # defined in this file into the environment.
  412. .NOEXPORT:
  413.  
  414. # Support for additional languages (other than c and objc).
  415. # ??? objc can be supported this way too (leave for later).
  416.  
  417. # These next lines are overridden by configure.
  418. LANG_MAKEFILES =
  419. LANG_STAGESTUFF =
  420. LANG_DIFF_EXCLUDES =
  421.  
  422. # Flags to pass to recursive makes.
  423. # CC is set by configure.  Hosts without symlinks need special handling
  424. # because we need CC="stage1/xgcc -Bstage1/" to work in the language
  425. # subdirectories.
  426. # ??? The choices here will need some experimenting with.
  427. FLAGS_TO_PASS = \
  428.     "AR_FLAGS=$(AR_FLAGS)" \
  429.     "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
  430.     "BISON=$(BISON)" \
  431.     "BISONFLAGS=$(BISONFLAGS)" \
  432.     "CC=set-by-configure" \
  433.     "CFLAGS=$(CFLAGS)" \
  434.     "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
  435.     "LDFLAGS=$(LDFLAGS)" \
  436.     "LEX=$(LEX)" \
  437.     "LEXFLAGS=$(LEXFLAGS)" \
  438.     "MAKEINFO=$(MAKEINFO)" \
  439.     "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
  440.     "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
  441.     "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
  442.     "SHELL=$(SHELL)" \
  443.     "exec_prefix=$(exec_prefix)" \
  444.     "prefix=$(prefix)" \
  445.     "tooldir=$(tooldir)" \
  446.     "bindir=$(bindir)" \
  447.     "libsubdir=$(libsubdir)"
  448.  
  449. # Lists of files for various purposes.
  450.  
  451. # A list of all the language-specific executables.
  452. # This is overridden by configure.
  453. COMPILERS = cc1 cc1obj
  454.  
  455. # Language-specific object files for C.
  456. C_OBJS = c-parse.o c-lang.o c-lex.o c-pragma.o \
  457.    c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
  458.  
  459. # Language-specific object files for Objective C.
  460. OBJC_OBJS = objc-parse.o objc-act.o c-lex.o c-pragma.o \
  461.    c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
  462.  
  463. # Files specific to the C interpreter bytecode compiler(s).
  464. BC_OBJS = bc-emit.o bc-optab.o
  465.  
  466. # Language-independent object files.
  467. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  468.  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
  469.  rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
  470.  dbxout.o sdbout.o dwarfout.o xcoffout.o \
  471.  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
  472.  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
  473.  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
  474.  insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
  475.  insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
  476.  
  477. # GEN files are listed separately, so they can be built before doing parallel
  478. #  makes for cc1 or cc1plus.  Otherwise sequent parallel make attempts to load
  479. #  them before rtl.o is compiled.
  480. GEN= genemit genoutput genrecog genextract genflags gencodes genconfig genpeep
  481.  
  482. # Files to be copied away after each stage in building.
  483. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  484.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  485.  insn-attr.h insn-attrtab.c insn-opinit.c \
  486.  stamp-flags stamp-config stamp-codes \
  487.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  488.  stamp-attr stamp-attrtab stamp-opinit stamp-proto \
  489.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  490.  genattrtab genattr genopinit \
  491.  bc-arity.h bc-opcode.h bc-opname.h \
  492.  stamp-bcarity stamp-bcopcode stamp-bcopname \
  493.  bi-arity bi-opcode bi-opname \
  494.  $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
  495.  cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2) \
  496.  $(LANG_STAGESTUFF)
  497.  
  498. # Members of libgcc1.a.
  499. LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
  500.    _lshrsi3 _lshlsi3 _ashrsi3 _ashlsi3 \
  501.    _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
  502.    _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
  503.    _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
  504.    _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
  505.    _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
  506.  
  507. # Library members defined in libgcc2.c.
  508. LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
  509.      _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 _ffsdi2 \
  510.     _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
  511.     _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
  512.     _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
  513.     _fixtfdi _fixunstfdi _floatditf \
  514.     __gcc_bcmp _varargs _eprintf _op_new _op_vnew _new_handler _op_delete \
  515.     _op_vdel _bb _shtab _clear_cache _trampoline __main _exit _ctors _eh \
  516.     _pure
  517.  
  518. # Header files that are made available under the same name
  519. # to programs compiled with GCC.
  520. USER_H = $(srcdir)/ginclude/stdarg.h $(srcdir)/ginclude/stddef.h \
  521.     $(srcdir)/ginclude/varargs.h $(srcdir)/ginclude/va-alpha.h \
  522.     $(srcdir)/ginclude/va-h8300.h $(srcdir)/ginclude/va-i860.h \
  523.     $(srcdir)/ginclude/va-i960.h $(srcdir)/ginclude/va-mips.h \
  524.     $(srcdir)/ginclude/va-m88k.h $(srcdir)/ginclude/va-pa.h \
  525.     $(srcdir)/ginclude/va-pyr.h $(srcdir)/ginclude/va-sparc.h \
  526.     $(srcdir)/ginclude/va-clipper.h $(srcdir)/ginclude/va-spur.h \
  527.     $(srcdir)/ginclude/proto.h $(EXTRA_HEADERS)
  528.  
  529. # The files that "belong" in CONFIG_H are deliberately omitted
  530. # because having them there would not be useful in actual practice.
  531. # All they would do is cause complete recompilation every time
  532. # one of the machine description files is edited.
  533. # That may or may not be what one wants to do.
  534. # If it is, rm *.o is an easy way to do it.
  535. # CONFIG_H = config.h tm.h
  536. CONFIG_H =
  537. RTL_H = rtl.h rtl.def machmode.h machmode.def
  538. TREE_H = tree.h real.h tree.def machmode.h machmode.def
  539. BYTECODE_H = bytecode.h bc-emit.h bc-optab.h
  540.  
  541. # Language makefile fragments.
  542.  
  543. # The following targets define the interface between us and the languages.
  544. #
  545. # all.build, all.cross, start.encap, rest.encap,
  546. # info, dvi,
  547. # install-normal, install-common, install-info, install-man,
  548. # uninstall, distdir,
  549. # mostlyclean, clean, distclean, extraclean, realclean,
  550. # stage1, stage2, stage3, stage4
  551. #
  552. # Each language is linked in with a series of hooks (since we can't use `::'
  553. # targets).  The name of each hooked is "lang.${target_name}" (eg: lang.info).
  554. # Configure computes and adds these here.
  555.  
  556. ####language hooks
  557.  
  558. # sed inserts language fragments after the following line.
  559. ####language fragments
  560.  
  561. # End of language makefile fragments.
  562.  
  563. # Avoid a lot of time thinking about remaking Makefile.in and *.def.
  564. .SUFFIXES: .in .def
  565.  
  566. Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
  567.    $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file) \
  568.    $(LANG_MAKEFILES)
  569.     $(SHELL) config.status
  570.  
  571. all.internal: start.encap rest.encap
  572. # This is what to compile if making a cross-compiler.
  573. # Note that we can compile enquire using the cross-compiler just built,
  574. # although we can't run it on this machine.
  575. all.cross: native gcc-cross specs stmp-headers $(LIBGCC) $(STMP_FIXPROTO) \
  576.     $(CROSS_TEST) $(ENQUIRE) $(EXTRA_PARTS) lang.all.cross
  577. # This is what to compile if making gcc with a cross-compiler.
  578. all.build: native xgcc $(EXTRA_PARTS) lang.all.build
  579. # This is what must be made before installing GCC and converting libraries.
  580. start.encap: native xgcc specs $(LIBGCC1) xlimits.h lang.start.encap
  581. # These can't be made until after GCC can run.
  582. rest.encap: stmp-headers $(LIBGCC) $(STMP_FIXPROTO) $(EXTRA_PARTS) lang.rest.encap
  583. # This is what is made with the host's compiler
  584. # whether making a cross compiler or not.
  585. native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
  586.  
  587. # Define the names for selecting languages in LANGUAGES.
  588. C c: cc1
  589. OBJC objc: cc1obj objc-runtime
  590. OBJECTIVE-C objective-c: cc1obj objc-runtime
  591. PROTO: proto
  592.  
  593. # Really, really stupid make features, such as SUN's KEEP_STATE, may force
  594. # a target to build even if it is up-to-date.  So we must verify that
  595. # config.status does not exist before failing.
  596. config.status:
  597.     @if [ ! -f config.status ] ; then \
  598.       echo You must configure gcc.  Look at the INSTALL file for details.; \
  599.       false; \
  600.     else \
  601.       true; \
  602.     fi
  603.  
  604. # On the target machine, finish building a cross compiler.
  605. # This does the things that can't be done on the host machine.
  606. rest.cross: $(LIBGCC) gfloat.h specs
  607.  
  608. # Verify that it works to compile and link cross-test.
  609. # If it does, then there are sufficient replacements for libgcc1.a.
  610. cross-test: cross-test.o native gcc-cross $(LIBGCC) $(GCC_PARTS)
  611.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) cross-test.o -o cross-test
  612. cross-test.o: cross-test.c native gcc-cross
  613.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/cross-test.c
  614.  
  615. # Recompile all the language-independent object files.
  616. # This is used only if the user explicitly asks for it.
  617. compilations: ${OBJS}
  618.  
  619. # Create a list of the language-independent object files so the language
  620. # subdirectories needn't mention their names explicitly.
  621. stamp-objlist: Makefile $(OBJS) $(BC_OBJS)
  622.     echo " $(OBJS) $(BC_OBJS)" | sed -e 's, \([a-z]\), ../\1,g' >stamp-objlist
  623.  
  624. # We call this executable `xgcc' rather than `gcc'
  625. # to avoid confusion if the current directory is in the path
  626. # and CC is `gcc'.  It is renamed to `gcc' when it is installed.
  627. xgcc: gcc.o version.o $(LIBDEPS)
  628.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o xgcc gcc.o version.o $(LIBS)
  629.  
  630. # Dump a specs file to make -B./ read these specs over installed ones.
  631. specs: xgcc
  632.     $(GCC_FOR_TARGET) -dumpspecs > specs
  633.  
  634. # We do want to create an executable named `xgcc', so we can use it to
  635. # compile libgcc2.a.
  636. # Also create gcc-cross, so that install-common will install properly.
  637. gcc-cross: xgcc
  638.     cp xgcc gcc-cross
  639.  
  640. cc1: $(P) $(C_OBJS) $(OBJS) $(BC_OBJS) $(LIBDEPS)
  641.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(BC_OBJS) $(LIBS)
  642.  
  643. cc1obj: $(P) $(OBJC_OBJS) $(OBJS) $(BC_OBJS) $(LIBDEPS)
  644.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1obj $(OBJC_OBJS) $(OBJS) $(BC_OBJS) $(LIBS)
  645.  
  646. # Copy float.h from its source.
  647. gfloat.h: $(FLOAT_H)
  648.     cp $(FLOAT_H) gfloat.h
  649.  
  650. # Create float.h source for the native machine.
  651. float.h-nat: enquire
  652.     -./enquire -f > tmp-float.h
  653.     mv tmp-float.h float.h-nat
  654.  
  655. # Create a dummy float.h source for a cross-compiler.
  656. float.h-cross:
  657.     echo "#error float.h values not known for cross-compiler" > float.h-cross
  658.  
  659. # Used to compile enquire with standard cc, but have forgotten why.
  660. # Let's try with GCC.
  661. enquire: enquire.o $(GCC_PARTS)
  662.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o enquire
  663. enquire.o: $(srcdir)/enquire.c $(GCC_PASSES) stmp-int-hdrs
  664. #    -if [ "$(srcdir)" != "." ]; then rm -f ./enquire.c; else true; fi
  665. #    -cp $(srcdir)/enquire.c . > /dev/null 2>&1
  666. # Breaking this line caused a problem with one version of GNU make.
  667.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
  668.  
  669. # Build the version of limits.h that we will install.
  670. xlimits.h: glimits.h limitx.h limity.h
  671.     if [ -f $(SYSTEM_HEADER_DIR)/limits.h ] ; then \
  672.       cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > xlimits.h; \
  673.     else \
  674.       cat $(srcdir)/glimits.h > xlimits.h; \
  675.     fi
  676.  
  677. # Build libgcc.a.
  678. # This is done in two parts because some functions, in libgcc1.c,
  679. # must be compiled with something other than GCC,
  680. # while the rest, in libgcc2.c, must be compiled with xgcc.
  681. # That means we can't do libgcc2.c until after xgcc, cc1, etc.
  682.  
  683. # Use this as value of LIBGCC1 to cause conversion to GNU library format.
  684. # LIBCONVERT should put its output in libgcc1.conv.
  685. libgcc1.conv: libgcc1.a
  686.     $(LIBCONVERT) libgcc1.a libgcc1.conv
  687.  
  688. # Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
  689. # Make an empty file instead.
  690. libgcc1.null: $(GCC_PASSES)
  691.     echo "__foo () {}" > dummy.c
  692.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
  693.     $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy.o
  694.     rm -f dummy.o dummy.c
  695.  
  696. # This is $(LIBGCC1) for a cross-compiler.
  697. # We have no automatic way of building libgcc1.a, 
  698. # so it's up to the installer to find a way to do that.
  699. # This rule deliberately does not depend on libgcc1.a
  700. # so that it will fail if the installer hasn't provided it.
  701. libgcc1.cross:
  702.     mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
  703.  
  704. # Compile the library of arithmetic subroutines with the native compiler.
  705. # Don't compile it with GCC!
  706. # (That would cause most arithmetic functions to call themselves.)
  707. libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
  708.     -rm -f tmplibgcc1.a
  709. # Actually build it in tmplibgcc1.a, then rename at end,
  710. # so that libgcc1.a itself remains nonexistent if compilation is aborted.
  711. # -e causes any failing command to make this rule fail.
  712. # -e doesn't work in certain shells, so we test $$? as well.
  713. # lynx has a broken ar, it always complains when the initial library is
  714. # empty, thus this command works only if we don't do -e
  715. # There is a trailing backslash (\) deleted from the following line.
  716. #    set -e;
  717.     for name in $(LIB1FUNCS); \
  718.     do \
  719.       echo $${name}; \
  720.       rm -f $${name}.o; \
  721.       $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
  722.       if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
  723.       mv libgcc1.o $${name}.o; \
  724.       $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
  725.       rm -f $${name}.o; \
  726.     done
  727. # Some shells crash when a loop has no items.
  728. # So make sure there is always at least one--`..'.
  729. # Then ignore it.
  730. # We don't use -e here because there are if statements
  731. # that should not make the command give up when the if condition is false.
  732. # Instead, we test for failure after each command where it matters.
  733.     for file in .. $(LIB1FUNCS_EXTRA); \
  734.     do \
  735.       if [ x$${file} != x.. ]; then \
  736.         name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
  737.         echo $${name}; \
  738.         if [ $${name}.asm = $${file} ]; then \
  739.           cp $${file} $${name}.s || exit 1; file=$${name}.s; \
  740.         else true; fi; \
  741.         $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
  742.         if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
  743.         $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
  744.         if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
  745.         rm -f $${name}.[so]; \
  746.       else true; \
  747.       fi; \
  748.     done
  749.     mv tmplibgcc1.a libgcc1.a
  750.  
  751. # Build libgcc1.a from assembler source.  LIB1ASMFUNCS is the list of
  752. # functions.  LIB1ASMSRC is the name of the source file in the config
  753. # subdirectory.
  754. libgcc1-asm.a: libgcc2.ready config.status $(srcdir)/config/$(LIB1ASMSRC)
  755.     -rm -f tmplibgcc1.a libgcc1.S
  756.     cp $(srcdir)/config/$(LIB1ASMSRC) libgcc1.S
  757. # Actually build it in tmplibgcc1.a, then rename at end,
  758. # so that libgcc1-asm.a itself remains nonexistent if compilation is aborted.
  759. # -e causes any failing command to make this rule fail.
  760. # -e doesn't work in certain shells, so we test $$? as well.
  761. # lynx has a broken ar, it always complains when the initial library is
  762. # empty, thus this command works only if we don't do -e
  763. # There is a trailing backslash (\) deleted from the following line.
  764. #    set -e;
  765.     for name in $(LIB1ASMFUNCS); \
  766.     do \
  767.       echo $${name}; \
  768.       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} libgcc1.S; \
  769.       if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
  770.       mv libgcc1.o $${name}.o; \
  771.       $(AR) $(AR_FLAGS) tmplibgcc1.a $${name}.o; \
  772.       rm -f $${name}.o; \
  773.     done
  774.     -rm -f libgcc1.S
  775.     mv tmplibgcc1.a libgcc1-asm.a
  776.  
  777. # Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
  778. # But recompiling cc1 should not force recompilation of libgcc2.a.
  779. # If you want to force recompilation, delete libgcc2.a.
  780. libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS) stmp-int-hdrs
  781.     -if [ -f libgcc2.ready ] ; then \
  782.         true; \
  783.     else \
  784.         touch libgcc2.ready; \
  785.     fi
  786.  
  787. libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
  788.    machmode.h longlong.h gbl-ctors.h config.status
  789. # Actually build it in tmplibgcc2.a, then rename at end,
  790. # so that libgcc2.a itself remains nonexistent if compilation is aborted.
  791.     -rm -f tmplibgcc2.a
  792. # -e causes any failing command to make this rule fail.
  793. # -e doesn't work in certain shells, so we test $$? as well.
  794. # lynx has a broken ar, it always complains when the initial library is
  795. # empty, thus this command works only if we don't do -e
  796. # There is a trailing backslash (\) deleted from the following line.
  797. #    set -e;
  798.     for name in $(LIB2FUNCS); \
  799.     do \
  800.       echo $${name}; \
  801.       $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
  802.           $(srcdir)/libgcc2.c -o $${name}.o; \
  803.       if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
  804.       $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
  805.       rm -f $${name}.o; \
  806.     done
  807. # Some shells crash when a loop has no items.
  808. # So make sure there is always at least one--`..'.
  809. # Then ignore it.
  810. # We don't use -e here because there are if statements
  811. # that should not make the command give up when the if condition is false.
  812. # Instead, we test for failure after each command where it matters.
  813.     for file in .. $(LIB2FUNCS_EXTRA); \
  814.     do \
  815.       if [ x$${file} != x.. ]; then \
  816.         name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
  817.         echo $${name}; \
  818.         if [ $${name}.asm = $${file} ]; then \
  819.           cp $${file} $${name}.s || exit 1; file=$${name}.s; \
  820.         else true; fi; \
  821.         $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
  822.         if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
  823.         $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
  824.         rm -f $${name}.[so]; \
  825.       else true; \
  826.       fi; \
  827.     done
  828.     mv tmplibgcc2.a libgcc2.a
  829. # These lines were deleted from above the mv command
  830. # because ranlibing libgcc.a itself should suffice.
  831. #    -if [ x${HPUX_GAS} = x ] ; then \
  832. #      if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi \
  833. #    else true; fi
  834.  
  835. # Combine the various libraries into a single library, libgcc.a.
  836. libgcc.a: $(LIBGCC1) $(LIBGCC2)
  837.     -rm -rf tmplibgcc.a libgcc.a tmpcopy
  838.     mkdir tmpcopy
  839.     -if [ x$(LIBGCC1) != x ];            \
  840.     then (cd tmpcopy; $(AR) x ../$(LIBGCC1));    \
  841.     else true;                    \
  842.     fi
  843. # Some versions of ar (specifically the one in RISC/os 5.x), create an
  844. # unwritable table of contents file, and then print an error message when
  845. # the second ar command tries to overwrite this file.  To avoid the error
  846. # message from ar, we make sure all files are writable.
  847.     -(cd tmpcopy; chmod +w * > /dev/null 2>&1)
  848. # The "cd..; wait" makes sure that the lock on tmpcopy has time to disappear.
  849.     (cd tmpcopy; $(AR) x ../$(LIBGCC2); cd ..; /c/wait 2)
  850.     (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *.o; cd ..; /c/wait 2)
  851.     rm -rf tmpcopy
  852.     -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
  853. # Actually build it in tmplibgcc.a, then rename at end,
  854. # so that libgcc.a itself remains nonexistent if compilation is aborted.
  855.     mv tmplibgcc.a libgcc.a
  856.  
  857. # Use the genmultilib shell script to generate the information the gcc
  858. # driver program needs to select the library directory based on the
  859. # switches.
  860. multilib.h: $(srcdir)/genmultilib config.status
  861.     $(SHELL) $(srcdir)/genmultilib "$(MULTILIB_OPTIONS)" \
  862.       "$(MULTILIB_DIRNAMES)" "$(MULTILIB_MATCHES)" > multilib.h
  863.  
  864. # Build multiple copies of libgcc.a, one for each target switch.
  865. stmp-multilib: $(LIBGCC1) libgcc2.c libgcc2.ready $(CONFIG_H) \
  866.    $(LIB2FUNCS_EXTRA) machmode.h longlong.h gbl-ctors.h config.status
  867.     for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
  868.       dir=`echo $$i | sed -e 's/;.*$$//'`; \
  869.       flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
  870.       $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
  871.         AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
  872.         RANLIB="$(RANLIB)" RANLIB_TEST="$(RANLIB_TEST)" \
  873.         HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
  874.         LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS) $${flags}" \
  875.         LIBGCC1="$(LIBGCC1)" LIBGCC2="$(LIBGCC2)" \
  876.         dir="$${dir}" stmp-multilib-sub; \
  877.     done
  878.     touch stmp-multilib
  879.  
  880. # Subroutine of stmp-multilib so make -n works.
  881. stmp-multilib-sub:
  882.     rm -f $(dir)/libgcc.a $(LIBGCC2)
  883.     $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
  884.       AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
  885.       HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
  886.       LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC2)
  887.     if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
  888.     then true; \
  889.     else rm -f $(LIBGCC1); \
  890.     fi
  891.     if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
  892.     then true; \
  893.     else \
  894.       $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
  895.         AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
  896.         HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
  897.         LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC1); \
  898.     fi
  899.     rm -rf tmplibgcc.a tmpcopy
  900.     mkdir tmpcopy
  901.     if [ x$(LIBGCC1) != x ]; \
  902.     then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
  903.     else true; \
  904.     fi
  905.     (cd tmpcopy; $(AR) x ../$(LIBGCC2))
  906.     (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *.o)
  907.     rm -rf libgcc2.a tmpcopy
  908.     if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
  909.     if [ -d $(dir) ]; then true; else mkdir $(dir); fi
  910.     mv tmplibgcc.a $(dir)/libgcc.a
  911.  
  912. objc-runtime: libobjc.a
  913.  
  914. # Build the Objective C runtime library.
  915. libobjc.a: cc1obj stmp-int-hdrs libgcc2.ready $(USE_COLLECT2) $(EXTRA_PARTS) specs
  916.     if [ -d objc ]; then true; else mkdir objc; fi
  917.     thisdir1=`pwd`; \
  918.     srcdir1=`cd $(srcdir); pwd`; \
  919.     cd objc; \
  920.     $(MAKE) -f $${srcdir1}/objc/Makefile libobjc.a \
  921.       srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
  922.       GCC_FOR_TARGET="$${thisdir1}/$(XGCC) -B$${thisdir1}/" \
  923.       GCC_CFLAGS="$(GCC_CFLAGS)"
  924.     -rm -f libobjc.a
  925.     $(HARDLINK) objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
  926.     -if $(RANLIB_TEST) ; then $(RANLIB) libobjc.a; else true; fi
  927.  
  928. # This is used by objc/Makefile if the user runs that directly.
  929. sublibobjc.a: cc1obj stmp-int-hdrs libgcc2.ready
  930.     thisdir1=`pwd`; \
  931.     srcdir1=`cd $(srcdir); pwd`; \
  932.     cd objc; \
  933.     $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
  934.       srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
  935.       GCC_FOR_TARGET="$$thisdir1/$(XGCC) -B$$thisdir1/" \
  936.       GCC_CFLAGS="$(GCC_CFLAGS)"
  937.  
  938. # Compile two additional files that are linked with every program
  939. # linked using GCC on system V, for the sake of C++ constructors.
  940. crtbegin.o:    crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
  941.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_BEGIN \
  942.       -finhibit-size-directive -fno-inline-functions \
  943.       -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o
  944.  
  945. crtend.o:    crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
  946.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \
  947.       -finhibit-size-directive -fno-inline-functions \
  948.       -g0 -c $(srcdir)/crtstuff.c -o crtend.o
  949.  
  950. # Compiling object files from source files.
  951.  
  952. # Note that dependencies on obstack.h are not written
  953. # because that file is not part of GCC.
  954.  
  955. # C language specific files.
  956.  
  957. c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
  958.     $(srcdir)/c-parse.h c-tree.h input.h flags.h
  959.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
  960. $(srcdir)/c-parse.c $(srcdir)/c-parse.h: $(srcdir)/c-parse.y
  961.     cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
  962. $(srcdir)/c-parse.y: $(srcdir)/c-parse.in
  963.     sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
  964.       -e "/^ifc$$/d" -e "/^end ifc$$/d" \
  965.       $(srcdir)/c-parse.in >tmp-c-parse.y
  966.     $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
  967.  
  968. $(srcdir)/c-gperf.h: $(srcdir)/c-parse.gperf
  969.     gperf -p -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,$$ \
  970.        $(srcdir)/c-parse.gperf >tmp-gperf.h
  971.      $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h
  972.  
  973. c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  974. c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
  975. c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
  976. c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h $(srcdir)/c-parse.h \
  977.     input.h flags.h $(srcdir)/c-gperf.h
  978. c-aux-info.o : c-aux-info.c  $(CONFIG_H) $(TREE_H) c-tree.h flags.h
  979. c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
  980. c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H)
  981. c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h
  982.  
  983. # To make a configuration always use collect2, set USE_COLLECT2 to ld.
  984. ld: collect2
  985.     rm -f ld
  986.     $(HARDLINK) collect2 ld
  987.  
  988. collect2 : collect2.o version.o $(LIBDEPS)
  989. # Don't try modifying collect2 (aka ld) in place--it might be linking this.
  990.     -rm -f collect2
  991.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o collect2 collect2.o version.o $(LIBS)
  992.  
  993. collect2.o : collect2.c $(CONFIG_H) gstab.h
  994.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES)  \
  995.     -DTARGET_MACHINE=\"$(target)\" \
  996.     -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
  997.  
  998. # Objective C language specific files.
  999.  
  1000. objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
  1001.    c-tree.h input.h flags.h objc-act.h
  1002.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
  1003. $(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
  1004.     cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
  1005. $(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
  1006.     sed -e "/^ifc$$/,/^end ifc$$/d" \
  1007.       -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
  1008.       $(srcdir)/c-parse.in >tmp-objc-prs.y
  1009.     $(srcdir)/move-if-change tmp-objc-prs.y $(srcdir)/objc-parse.y
  1010.  
  1011. objc-act.o : objc-act.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h c-lex.h \
  1012.    flags.h objc-act.h input.h function.h $(srcdir)/c-parse.h
  1013.  
  1014. # A file used by all variants of C.
  1015.  
  1016. c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  1017.  
  1018. # Language-independent files.
  1019.  
  1020. gcc.o: gcc.c $(CONFIG_H) multilib.h config.status f/compilers.h
  1021.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1022.   -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
  1023.   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
  1024.   -DDEFAULT_TARGET_VERSION=\"$(version)\" \
  1025.   -DDEFAULT_TARGET_MACHINE=\"$(target)\" \
  1026.   -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \
  1027.   $(MAYBE_TARGET_DEFAULT) \
  1028.   -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
  1029.  
  1030. dumpvers: dumpvers.c
  1031.  
  1032. version.o: version.c
  1033. obstack.o: obstack.c
  1034.  
  1035. convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
  1036.  
  1037. tree.o : tree.c $(CONFIG_H) $(TREE_H) flags.h function.h
  1038. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  1039. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
  1040. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
  1041. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
  1042.    insn-attr.h xcoffout.h defaults.h f/options-lang.h
  1043.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1044.       $(MAYBE_TARGET_DEFAULT) $(MAYBE_USE_COLLECT2) \
  1045.       -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
  1046.  
  1047. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  1048.  
  1049. print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
  1050. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  1051.  
  1052. toplev.o: bytecode.h bc-emit.h
  1053. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
  1054.    defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h bytecode.h
  1055. function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  1056.    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
  1057.    recog.h output.h bytecode.h
  1058. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  1059.    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h \
  1060.    recog.h bytecode.h bc-typecd.h bc-typecd.def bc-opcode.h bc-optab.h \
  1061.    bc-emit.h
  1062. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h regs.h \
  1063.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h \
  1064.    typeclass.h bytecode.h bc-opcode.h bc-typecd.h bc-typecd.def bc-optab.h \
  1065.    bc-emit.h modemap.def
  1066. calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
  1067.    insn-flags.h
  1068. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  1069.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
  1070. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
  1071.    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
  1072. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  1073.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h reload.h
  1074. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
  1075.    insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
  1076. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
  1077.    insn-config.h reload.h
  1078. dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
  1079.    insn-config.h reload.h output.h defaults.h
  1080. xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
  1081. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
  1082.    function.h regs.h insn-config.h insn-codes.h real.h expr.h bytecode.h \
  1083.    bc-opcode.h bc-typecd.h bc-typecd.def bc-optab.h bc-emit.h bc-opname.h
  1084. real.o : real.c $(CONFIG_H) $(TREE_H)
  1085. getpwd.o : getpwd.c $(CONFIG_H)
  1086.  
  1087. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
  1088.    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h \
  1089.    bytecode.h
  1090.  
  1091. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
  1092.    insn-config.h insn-flags.h insn-codes.h expr.h real.h
  1093. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  1094.  
  1095. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
  1096.    insn-config.h recog.h
  1097. loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
  1098.    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
  1099. unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  1100.    integrate.h regs.h flags.h expr.h loop.h
  1101. flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
  1102.    basic-block.h regs.h hard-reg-set.h output.h
  1103. combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h  \
  1104.    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
  1105.    basic-block.h recog.h real.h hard-reg-set.h
  1106. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  1107.    basic-block.h regs.h insn-config.h recog.h reload.h real.h bytecode.h
  1108. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
  1109.    regs.h hard-reg-set.h insn-config.h recog.h output.h
  1110. global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
  1111.    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
  1112.  
  1113. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  1114.    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
  1115. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
  1116.    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
  1117.    basic-block.h recog.h output.h
  1118. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  1119.    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
  1120. reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
  1121.    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
  1122.    flags.h output.h
  1123. sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
  1124.    flags.h insn-config.h insn-attr.h
  1125. final.o : final.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h regs.h \
  1126.    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
  1127.    hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
  1128. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  1129.    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
  1130.    insn-flags.h insn-codes.h real.h
  1131. reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
  1132.    regs.h hard-reg-set.h flags.h insn-config.h
  1133.  
  1134. aux-output.o : aux-output.c $(CONFIG_H) \
  1135.    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
  1136.    insn-flags.h output.h insn-attr.h insn-codes.h
  1137.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1138.      $(MAYBE_TARGET_DEFAULT) aux-output.c
  1139.  
  1140. # Build auxiliary files that support ecoff format.
  1141. mips-tfile: mips-tfile.o version.o $(LIBDEPS)
  1142.     $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tfile mips-tfile.o version.o $(LIBS)
  1143.  
  1144. mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H)
  1145.  
  1146. mips-tdump: mips-tdump.o version.o $(LIBDEPS)
  1147.     $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tdump mips-tdump.o version.o $(LIBS)
  1148.  
  1149. mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H)
  1150.  
  1151. # Build file to support OSF/rose half-pic format.
  1152. halfpic.o: halfpic.c $(CONFIG_H) $(RTL_H) $(TREE_H)
  1153.  
  1154. # Normally this target is not used; but it is used if you
  1155. # define ALLOCA=alloca.o.  In that case, you must get a suitable alloca.c
  1156. # from the GNU Emacs distribution.
  1157. alloca.o:    alloca.c
  1158.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
  1159.       -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
  1160.     $(ALLOCA_FINISH)
  1161.  
  1162. # Generate header and source files from the machine description, 
  1163. # and compile them.
  1164.  
  1165. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  1166.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
  1167.   insn-attr.h insn-attrtab.c
  1168.  
  1169. # The following pair of rules has this effect:
  1170. # genconfig is run only if the md has changed since genconfig was last run;
  1171. # but the file insn-config.h is touched only when its contents actually change.
  1172.  
  1173. # Each of the other insn-* files is handled by a similar pair of rules.
  1174.  
  1175. # This causes an anomaly in the results of make -n
  1176. # because insn-* is older than stamp-*
  1177. # and thus make -n thinks that insn-* will be updated
  1178. # and force recompilation of things that depend on it.
  1179. # We use move-if-change precisely to avoid such recompilation.
  1180. # But there is no way to teach make -n that it will be avoided.
  1181.  
  1182. # Each of the insn-*.[ch] rules has a semicolon at the end,
  1183. # for otherwise the system Make on SunOS 4.1 never tries
  1184. # to recompile insn-*.o.  To avoid problems and extra noise from
  1185. # versions of make which don't like empty commands (nothing after the
  1186. # trailing `;'), we call true for each.
  1187.  
  1188. insn-config.h: stamp-config ; @true
  1189. stamp-config : md genconfig $(srcdir)/move-if-change
  1190.     ./genconfig md > tmp-config.h
  1191.     $(srcdir)/move-if-change tmp-config.h insn-config.h
  1192.     touch stamp-config
  1193.  
  1194. insn-flags.h: stamp-flags ; @true
  1195. stamp-flags : md genflags $(srcdir)/move-if-change
  1196.     ./genflags md > tmp-flags.h
  1197.     $(srcdir)/move-if-change tmp-flags.h insn-flags.h
  1198.     touch stamp-flags
  1199.  
  1200. insn-codes.h: stamp-codes ; @true
  1201. stamp-codes : md gencodes $(srcdir)/move-if-change
  1202.     ./gencodes md > tmp-codes.h
  1203.     $(srcdir)/move-if-change tmp-codes.h insn-codes.h
  1204.     touch stamp-codes
  1205.  
  1206. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
  1207.   insn-config.h insn-flags.h insn-codes.h
  1208.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
  1209.  
  1210. insn-emit.c: stamp-emit ; @true
  1211. stamp-emit : md genemit $(srcdir)/move-if-change
  1212.     ./genemit md > tmp-emit.c
  1213.     $(srcdir)/move-if-change tmp-emit.c insn-emit.c
  1214.     touch stamp-emit
  1215.  
  1216. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
  1217.   real.h output.h flags.h
  1218.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
  1219.  
  1220. insn-recog.c: stamp-recog ; @true
  1221. stamp-recog : md genrecog $(srcdir)/move-if-change
  1222.     ./genrecog md > tmp-recog.c
  1223.     $(srcdir)/move-if-change tmp-recog.c insn-recog.c
  1224.     touch stamp-recog
  1225.  
  1226. insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
  1227.   insn-config.h flags.h rtl.h recog.h expr.h reload.h
  1228.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
  1229.  
  1230. insn-opinit.c: stamp-opinit ; @true
  1231. stamp-opinit : md genopinit $(srcdir)/move-if-change
  1232.     ./genopinit md > tmp-opinit.c
  1233.     $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
  1234.     touch stamp-opinit
  1235.  
  1236. insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
  1237.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
  1238.  
  1239. insn-extract.c: stamp-extract ; @true
  1240. stamp-extract : md genextract $(srcdir)/move-if-change
  1241.     ./genextract md > tmp-extract.c
  1242.     $(srcdir)/move-if-change tmp-extract.c insn-extract.c
  1243.     touch stamp-extract
  1244.  
  1245. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
  1246.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
  1247.  
  1248. insn-peep.c: stamp-peep ; @true
  1249. stamp-peep : md genpeep $(srcdir)/move-if-change
  1250.     ./genpeep md > tmp-peep.c
  1251.     $(srcdir)/move-if-change tmp-peep.c insn-peep.c
  1252.     touch stamp-peep
  1253.  
  1254. insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
  1255.      insn-attr.h insn-config.h
  1256.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
  1257.  
  1258. insn-attr.h: stamp-attr ; @true
  1259. stamp-attr : md genattr $(srcdir)/move-if-change
  1260.     ./genattr md > tmp-attr.h
  1261.     $(srcdir)/move-if-change tmp-attr.h insn-attr.h
  1262.     touch stamp-attr
  1263.  
  1264. insn-attrtab.c: stamp-attrtab ; @true
  1265. stamp-attrtab : md genattrtab $(srcdir)/move-if-change
  1266.     if cmp -s $(PREMADE_ATTRTAB_MD) md;    \
  1267.     then                    \
  1268.       echo Using $(PREMADE_ATTRTAB);    \
  1269.       cp $(PREMADE_ATTRTAB) tmp-attrtab.c;    \
  1270.     else                    \
  1271.       ./genattrtab md > tmp-attrtab.c;    \
  1272.     fi
  1273.     $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
  1274.     touch stamp-attrtab
  1275.  
  1276. insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
  1277.     hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
  1278.     insn-codes.h
  1279.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
  1280.  
  1281. insn-output.c: stamp-output ; @true
  1282. stamp-output : md genoutput $(srcdir)/move-if-change
  1283.     ./genoutput md > tmp-output.c
  1284.     $(srcdir)/move-if-change tmp-output.c insn-output.c
  1285.     touch stamp-output
  1286.  
  1287. # Compile the programs that generate insn-* from the machine description.
  1288. # They are compiled with $(HOST_CC), and associated libraries,
  1289. # since they need to run on this machine
  1290. # even if GCC is being compiled to run on some other machine.
  1291.  
  1292. # $(CONFIG_H) is omitted from the deps of the gen*.o
  1293. # because these programs don't really depend on anything 
  1294. # about the target machine.  They do depend on config.h itself,
  1295. # since that describes the host machine.
  1296.  
  1297. # Pass the md file through cpp if the target requests it.
  1298. $(MD_FILE): $(MD_DEPS)
  1299.     rm -f $@
  1300.     $(MD_CPP) $(MD_CPPFLAGS) md.pre-cpp | sed 's/^# /; /g' > $@
  1301.  
  1302. genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
  1303.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genconfig \
  1304.       genconfig.o $(HOST_RTL) $(HOST_LIBS)
  1305.  
  1306. genconfig.o : genconfig.c $(RTL_H) hconfig.h
  1307.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
  1308.  
  1309. genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
  1310.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genflags \
  1311.      genflags.o $(HOST_RTL) $(HOST_LIBS)
  1312.  
  1313. genflags.o : genflags.c $(RTL_H) hconfig.h
  1314.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
  1315.  
  1316. gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
  1317.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gencodes \
  1318.      gencodes.o $(HOST_RTL) $(HOST_LIBS)
  1319.  
  1320. gencodes.o : gencodes.c $(RTL_H) hconfig.h
  1321.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
  1322.  
  1323. genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
  1324.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genemit \
  1325.      genemit.o $(HOST_RTL) $(HOST_LIBS)
  1326.  
  1327. genemit.o : genemit.c $(RTL_H) hconfig.h
  1328.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
  1329.  
  1330. genopinit : genopinit.o $(HOST_RTL) $(HOST_LIBDEPS)
  1331.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genopinit \
  1332.      genopinit.o $(HOST_RTL) $(HOST_LIBS)
  1333.  
  1334. genopinit.o : genopinit.c $(RTL_H) hconfig.h
  1335.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
  1336.  
  1337. genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
  1338.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genrecog \
  1339.      genrecog.o $(HOST_RTL) $(HOST_LIBS)
  1340.  
  1341. genrecog.o : genrecog.c $(RTL_H) hconfig.h
  1342.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
  1343.  
  1344. genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
  1345.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genextract \
  1346.      genextract.o $(HOST_RTL) $(HOST_LIBS)
  1347.  
  1348. genextract.o : genextract.c $(RTL_H) hconfig.h insn-config.h
  1349.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
  1350.  
  1351. genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
  1352.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genpeep \
  1353.      genpeep.o $(HOST_RTL) $(HOST_LIBS)
  1354.  
  1355. genpeep.o : genpeep.c $(RTL_H) hconfig.h
  1356.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
  1357.  
  1358. genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
  1359.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattr \
  1360.      genattr.o $(HOST_RTL) $(HOST_LIBS)
  1361.  
  1362. genattr.o : genattr.c $(RTL_H) hconfig.h
  1363.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
  1364.  
  1365. genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
  1366.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattrtab \
  1367.      genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
  1368.  
  1369. genattrtab.o : genattrtab.c $(RTL_H) hconfig.h insn-config.h
  1370.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
  1371.  
  1372. genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
  1373.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genoutput \
  1374.      genoutput.o $(HOST_RTL) $(HOST_LIBS)
  1375.  
  1376. genoutput.o : genoutput.c $(RTL_H) hconfig.h
  1377.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
  1378.  
  1379. # Compile the libraries to be used by gen*.
  1380. # If we are not cross-building, gen* use the same .o's that cc1 will use,
  1381. # and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
  1382. # with the rules for rtl.o, alloca.o, etc.
  1383. $(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
  1384.     rm -f $(HOST_PREFIX)rtl.c
  1385.     sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
  1386.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
  1387.  
  1388. $(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
  1389.     rm -f $(HOST_PREFIX)print-rtl.c
  1390.     sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
  1391.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
  1392.  
  1393. $(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
  1394.     rm -f $(HOST_PREFIX)rtlanal.c
  1395.     sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
  1396.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
  1397.  
  1398. $(HOST_PREFIX_1)alloca.o: alloca.c
  1399.     rm -f $(HOST_PREFIX)alloca.c
  1400.     cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
  1401.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
  1402.  
  1403. $(HOST_PREFIX_1)obstack.o: obstack.c
  1404.     rm -f $(HOST_PREFIX)obstack.c
  1405.     sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
  1406.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
  1407.  
  1408. $(HOST_PREFIX_1)malloc.o: malloc.c
  1409.     rm -f $(HOST_PREFIX)malloc.c
  1410.     sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
  1411.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
  1412.  
  1413. # This satisfies the dependency that we get if you cross-compile a compiler
  1414. # that does not need to compile alloca, malloc or whatever.
  1415. $(HOST_PREFIX_1): 
  1416.     touch $(HOST_PREFIX_1)
  1417.  
  1418. # Remake bytecode files.
  1419. # BI_ALL=bi-run.o
  1420. BI_ALL=
  1421. BC_ALL=bc-opname.h bc-opcode.h bc-arity.h
  1422. BI_OBJ=bi-parser.o bi-lexer.o bi-reverse.o
  1423.  
  1424.  
  1425. bc-emit.o : bc-emit.c $(CONFIG_H) $(RTL_H) real.h $(BYTECODE_H) \
  1426.      bc-arity.h bc-opcode.h bc-typecd.h bc-typecd.def bi-run.h bytetypes.h
  1427. bc-optab.o : bc-optab.c $(CONFIG_H) $(REAL_H) $(BYTECODE_H) \
  1428.         bc-opcode.h bc-typecd.h bc-typecd.def
  1429.  
  1430.  
  1431. bytecode: $(BI_ALL) $(BC_ALL)
  1432.  
  1433. bi-arity: bi-arity.o $(BI_OBJ) $(HOST_LIBDEPS)
  1434.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o bi-arity \
  1435.      bi-arity.o $(BI_OBJ) $(HOST_LIBS)
  1436. bi-opcode: bi-opcode.o $(BI_OBJ) $(HOST_LIBDEPS)
  1437.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o bi-opcode \
  1438.      bi-opcode.o $(BI_OBJ) $(HOST_LIBS)
  1439. bi-opname: bi-opname.o $(BI_OBJ) $(HOST_LIBDEPS)
  1440.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o bi-opname \
  1441.      bi-opname.o $(BI_OBJ) $(HOST_LIBS)
  1442.  
  1443. bi-run.o:    $(srcdir)/bi-run.c $(srcdir)/bi-run.h $(srcdir)/bc-typecd.h \
  1444.   bc-opname.h bc-arity.h bc-opcode.h
  1445.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/bi-run.c
  1446. $(srcdir)/bi-parser.c $(srcdir)/bi-parser.h: $(srcdir)/bi-parser.y
  1447.     cd $(srcdir); $(BISON) $(BISONFLAGS) -d bi-parser.y -o bi-parser.c
  1448. bi-parser.o:    $(srcdir)/bi-parser.c $(srcdir)/bi-defs.h hconfig.h
  1449.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
  1450.        $(srcdir)/bi-parser.c
  1451. bi-lexer.o:    $(srcdir)/bi-lexer.c $(srcdir)/bi-parser.h hconfig.h
  1452.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
  1453.        $(srcdir)/bi-lexer.c
  1454. bi-arity.o: bi-arity.c $(srcdir)/bi-defs.h hconfig.h
  1455.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
  1456.        $(srcdir)/bi-arity.c
  1457. bi-opcode.o: bi-opcode.c $(srcdir)/bi-defs.h hconfig.h
  1458.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
  1459.        $(srcdir)/bi-opcode.c
  1460. bi-opname.o: bi-opname.c $(srcdir)/bi-defs.h hconfig.h
  1461.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
  1462.        $(srcdir)/bi-opname.c
  1463. bi-reverse.o: bi-reverse.c $(srcdir)/bi-defs.h
  1464.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
  1465.        $(srcdir)/bi-reverse.c
  1466.  
  1467.  
  1468. bc-arity.h: stamp-bcarity ; @true
  1469. stamp-bcarity : $(srcdir)/bytecode.def bi-arity $(srcdir)/move-if-change
  1470.     ./bi-arity < $(srcdir)/bytecode.def >tmp-bc-arity.h
  1471.     $(srcdir)/move-if-change tmp-bc-arity.h bc-arity.h
  1472.     touch stamp-bcarity
  1473.  
  1474. bc-opcode.h: stamp-bcopcode ; @true
  1475. stamp-bcopcode : $(srcdir)/bytecode.def bi-opcode $(srcdir)/move-if-change
  1476.     ./bi-opcode < $(srcdir)/bytecode.def >tmp-bcopcd.h
  1477.     $(srcdir)/move-if-change tmp-bcopcd.h bc-opcode.h
  1478.     touch stamp-bcopcode
  1479.  
  1480. bc-opname.h: stamp-bcopname ; @true
  1481. stamp-bcopname : $(srcdir)/bytecode.def bi-opname $(srcdir)/move-if-change
  1482.     ./bi-opname < $(srcdir)/bytecode.def >tmp-bcopnm.h
  1483.     $(srcdir)/move-if-change tmp-bcopnm.h bc-opname.h
  1484.     touch stamp-bcopname
  1485.  
  1486. bytecode.mostlyclean:
  1487.     -rm -f bc-arity.h bc-opcode.h bc-opname.h
  1488.  
  1489. bytecode.distclean bytecode.clean:    bytecode.mostlyclean
  1490.     -rm -f bi-arity bi-opcode bi-opname bi-lexer
  1491.  
  1492. bytecode.realclean: bytecode.clean
  1493.     -rm -f bi-parser.c bi-parser.h
  1494.  
  1495.  
  1496. # Remake cpp and protoize.
  1497.  
  1498. # Making the preprocessor
  1499. cpp: cccp
  1500.     -rm -f cpp
  1501.     $(HARDLINK) cccp cpp
  1502. cccp: cccp.o cexp.o version.o $(LIBDEPS)
  1503.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
  1504. cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
  1505.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
  1506. $(srcdir)/cexp.c: $(srcdir)/cexp.y
  1507.     cd $(srcdir); $(BISON) -o cexp.c cexp.y
  1508. cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status
  1509. # The reason we use $(libdir)/g++-include rather than using libsubdir
  1510. # is for compatibility with the current version of libg++.
  1511.     $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1512.       -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
  1513.       -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
  1514.       -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
  1515.       -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
  1516.       -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
  1517.       -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
  1518.  
  1519. # Note for the stamp targets, we run the program `true' instead of
  1520. # having an empty command (nothing following the semicolon).
  1521.  
  1522. proto: config.status protoize unprotoize SYSCALLS.c.X
  1523.  
  1524. protoize: protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
  1525.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
  1526.       protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o protoize
  1527. protoize.o: stamp-proto ; @true
  1528.  
  1529. unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
  1530.     $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
  1531.       unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) \
  1532.        -o unprotoize
  1533. unprotoize.o:    stamp-proto ; @true
  1534.  
  1535. stamp-proto:    $(srcdir)/protoize.c getopt.h $(CONFIG_H)
  1536.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1537.           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
  1538.       -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
  1539.           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
  1540.       -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
  1541.       -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
  1542.       -DSTD_PROTO_DIR=\"$(libsubdir)\" \
  1543.       -DUNPROTOIZE $(srcdir)/protoize.c
  1544.     mv protoize.o unprotoize.o
  1545.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1546.           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
  1547.       -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
  1548.           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
  1549.       -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
  1550.       -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
  1551.       -DSTD_PROTO_DIR=\"$(libsubdir)\" \
  1552.       $(srcdir)/protoize.c
  1553.     touch stamp-proto
  1554.  
  1555. getopt.o: $(srcdir)/getopt.c getopt.h
  1556.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
  1557. getopt1.o: $(srcdir)/getopt1.c getopt.h
  1558.     $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
  1559.  
  1560. # This info describes the target machine, so compile with GCC just built.
  1561. SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) stmp-int-hdrs
  1562.     -rm -f SYSCALLS.c tmp-SYSCALLS.s
  1563.     cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
  1564.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
  1565.       -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
  1566.     -rm -f SYSCALLS.c tmp-SYSCALLS.s
  1567.  
  1568.  
  1569. test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
  1570.     -rm -f tmp-proto.[cso]
  1571.     cp $(srcdir)/protoize.c tmp-proto.c
  1572.     chmod u+w tmp-proto.c
  1573.     ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
  1574.       $(CFLAGS) $(INCLUDES) \
  1575.       -DGCC_INCLUDE_DIR=0 \
  1576.       -DGPLUSPLUS_INCLUDE_DIR=0 \
  1577.       -DCROSS_INCLUDE_DIR=0 \
  1578.       -DTOOL_INCLUDE_DIR=0 \
  1579.       -DSTD_PROTO_DIR=0" tmp-proto.c
  1580.     @echo '**********' Expect 400 lines of differences.
  1581.     -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
  1582.     -wc -l tmp-proto.diff
  1583.     ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
  1584.       $(CFLAGS) $(INCLUDES) \
  1585.       -DGCC_INCLUDE_DIR=0 \
  1586.       -DGPLUSPLUS_INCLUDE_DIR=0 \
  1587.       -DCROSS_INCLUDE_DIR=0 \
  1588.       -DTOOL_INCLUDE_DIR=0 \
  1589.       -DSTD_PROTO_DIR=0" tmp-proto.c
  1590.     @echo Expect zero differences.
  1591.     diff $(srcdir)/protoize.c tmp-proto.c | cat
  1592.     -rm -f tmp-proto.[cso]
  1593.  
  1594. # Build the include directory.  The stamp files are stmp-* rather than
  1595. # stamp-* so that mostlyclean does not force the include directory to
  1596. # be rebuilt.
  1597.  
  1598. # Build the include directory except for float.h (which depends upon
  1599. # enquire).
  1600. stmp-int-hdrs: stmp-fixinc $(USER_H) xlimits.h objc-headers
  1601. # Copy in the headers provided with gcc.
  1602. # The sed command gets just the last file name component;
  1603. # this is necessary because VPATH could add a dirname.
  1604. # Using basename would be simpler, but some systems don't have it.
  1605.     objdir=`pwd`; \
  1606.     cd $(srcdir); \
  1607.     for file in $(USER_H); do \
  1608.       realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
  1609.       rm -f $$objdir/include/$$realfile; \
  1610.       cp ginclude/$$realfile $$objdir/include; \
  1611.       chmod a+r $$objdir/include/$$realfile; \
  1612.     done
  1613.     rm -f include/limits.h
  1614.     cp xlimits.h include/limits.h
  1615.     chmod a+r include/limits.h
  1616. # Install the README
  1617.     rm -f include/README
  1618.     cp $(srcdir)/README-fixinc include/README
  1619.     chmod a+r include/README
  1620.     touch stmp-int-hdrs
  1621.  
  1622. # Build the complete include directory.
  1623. stmp-headers: stmp-int-hdrs gfloat.h
  1624.     rm -f include/float.h
  1625.     cp gfloat.h include/float.h
  1626.     chmod a+r include/float.h
  1627.     touch stmp-headers
  1628.  
  1629. # Build fixed copies of system files.
  1630. stmp-fixinc: $(srcdir)/$(FIXINCLUDES) gsyslimits.h
  1631.     rm -rf include
  1632.     mkdir include
  1633.     if [ x$(FIXINCLUDES) != xMakefile.in ]; \
  1634.     then \
  1635.       for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
  1636.         if [ -d $$dir ]; \
  1637.         then \
  1638.           $(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir; \
  1639.         else true; fi; \
  1640.       done; \
  1641.     else true; \
  1642.     fi
  1643.     rm -f include/syslimits.h
  1644.     if [ -f include/limits.h ]; then \
  1645.       mv include/limits.h include/syslimits.h; \
  1646.     else \
  1647.       cp $(srcdir)/gsyslimits.h include/syslimits.h; \
  1648.     fi
  1649.     chmod a+r include/syslimits.h
  1650.     touch stmp-fixinc
  1651.  
  1652. # copy objc header files into build directory
  1653. objc-headers: stmp-fixinc
  1654.     if [ -d include ]; then true; else mkdir include; fi
  1655.     if [ -d objc ]; then true; else mkdir objc; fi
  1656.     thisdir1=`pwd`; \
  1657.     srcdir1=`cd $(srcdir); pwd`; \
  1658.     cd objc; \
  1659.     $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
  1660.     srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
  1661.     GCC_FOR_TARGET="$${thisdir1}/$(XGCC) -B$${thisdir1}/" \
  1662.     GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include
  1663.     touch objc-headers
  1664.  
  1665. # Files related to the fixproto script.
  1666.  
  1667. deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
  1668.     CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -Iinclude -I${SYSTEM_HEADER_DIR}"; \
  1669.       export CC; \
  1670.       $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h
  1671.     mv tmp-deduced.h deduced.h
  1672.  
  1673. gen-protos: gen-protos.o scan.o $(HOST_LIBDEPS)
  1674.     ${HOST_CC} $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gen-protos \
  1675.       gen-protos.o scan.o $(HOST_LIBS)
  1676.  
  1677. gen-protos.o: gen-protos.c scan.h hconfig.h
  1678.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c
  1679.  
  1680. scan.o: scan.c scan.h hconfig.h
  1681.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c
  1682.  
  1683. xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
  1684.     cat deduced.h $(srcdir)/sys-protos.h > fixtmp.c
  1685.     $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE_ -U__WCHAR_TYPE__ -E \
  1686.       | sed -e 's/    / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
  1687.       | ./gen-protos >xsys-protos.h
  1688.     rm -rf fixtmp.c
  1689.  
  1690. fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(HOST_LIBDEPS)
  1691.     $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o fix-header \
  1692.       fix-header.o scan-decls.o scan.o $(HOST_LIBS)
  1693.  
  1694. fix-header.o: fix-header.c obstack.h scan.h xsys-protos.h hconfig.h
  1695.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c
  1696.  
  1697. scan-decls.o: scan-decls.c scan.h hconfig.h
  1698.     $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c
  1699.  
  1700. # stmp-fixproto depends on this, not on fix-header directly.
  1701. # The idea is to make sure fix-header gets built,
  1702. # but not rerun fixproto after each stage
  1703. # just because fix-header's mtime has changed.
  1704. fixhdr.ready: fix-header
  1705.     -if [ -f fixhdr.ready ] ; then \
  1706.         true; \
  1707.     else \
  1708.         touch fixhdr.ready; \
  1709.     fi
  1710.  
  1711. # stmp-headers is to make sure fixincludes has already finished.
  1712. # The if statement is so that we don't run fixproto a second time
  1713. # if it has already been run on the files in `include'.
  1714. stmp-fixproto: fixhdr.ready fixproto stmp-headers
  1715.     @echo "Various warnings and error messages from fixproto are normal"
  1716.     -if [ -d include ] ; then true; else mkdir include; fi
  1717.     -if [ -f include/fixed ] ; then true; \
  1718.     else \
  1719.       : This line works around a 'make' bug in BSDI 1.1.; \
  1720.       CPP="$(GCC_FOR_TARGET) -E"; export CPP; \
  1721.         FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
  1722.         $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
  1723.       touch include/fixed; \
  1724.     fi
  1725.     touch stmp-fixproto
  1726.  
  1727. # Remake the info files.
  1728.  
  1729. doc: info
  1730. info: $(srcdir)/cpp.info $(srcdir)/gcc.info lang.info
  1731.  
  1732. $(srcdir)/cpp.info: cpp.texi
  1733.     cd $(srcdir); $(MAKEINFO) cpp.texi
  1734.  
  1735. $(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
  1736.         md.texi rtl.texi tm.texi 
  1737.     cd $(srcdir); $(MAKEINFO) gcc.texi
  1738.  
  1739. dvi: $(srcdir)/gcc.dvi $(srcdir)/cpp.dvi lang.dvi
  1740.  
  1741. # This works with GNU Make's default rule.
  1742. $(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
  1743.         md.texi rtl.texi tm.texi 
  1744.     $(TEXI2DVI) $<
  1745.  
  1746. # This works with GNU Make's default rule.
  1747. $(srcdir)/cpp.dvi: cpp.texi
  1748.     $(TEXI2DVI) $<
  1749.  
  1750. $(srcdir)/INSTALL: install1.texi install.texi
  1751.     $(MAKEINFO) -D INSTALLONLY --no-header --no-split \
  1752.       `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
  1753.  
  1754. # Deletion of files made during compilation.
  1755. # There are four levels of this:
  1756. #   `mostlyclean', `clean', `distclean' and `realclean'.
  1757. # `mostlyclean' is useful while working on a particular type of machine.
  1758. # It deletes most, but not all, of the files made by compilation.
  1759. # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
  1760. # `clean' deletes everything made by running `make all'.
  1761. # `distclean' also deletes the files made by config.
  1762. # `realclean' also deletes everything that could be regenerated automatically.
  1763. # We remove as much from the language subdirectories as we can
  1764. # (less duplicated code).
  1765.  
  1766.  
  1767. mostlyclean: bytecode.mostlyclean lang.mostlyclean
  1768.     -rm -f $(STAGESTUFF)
  1769. # Clean the objc subdir if we created one.
  1770.     if [ -d objc ]; then \
  1771.       srcdir1=`cd $(srcdir); pwd`; \
  1772.       cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
  1773.     else true; fi
  1774.     -rm -f libobjc.a
  1775. # Delete the temporary source copies for cross compilation.
  1776.     -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
  1777.     -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
  1778.     -rm -f $(HOST_PREFIX_1)obstack.c 
  1779. # Delete the temp files made in the course of building libgcc.a.
  1780.     -rm -f tmplibgcc* tmpcopy xlimits.h
  1781.     for name in $(LIB1FUNCS); do rm -f $${name}.c; done
  1782. # Delete other temporary files.
  1783.     -rm -f tmp-float.h tmp-gcc.xtar.gz
  1784.     -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
  1785.     -rm -f tmp-c-parse.y tmp-objc-prs.y tmp-gperf.h
  1786. # Delete the stamp files.
  1787.     -rm -f stamp-* tmp-*
  1788.     -rm -f */stamp-* */tmp-*
  1789. # Delete debugging dump files.
  1790.     -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  1791.     -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
  1792.     -rm -f */*.greg */*.lreg */*.combine */*.flow */*.cse */*.jump */*.rtl
  1793.     -rm -f */*.tree */*.loop */*.dbr */*.jump2 */*.sched */*.cse2
  1794.     -rm -f */*.sched2 */*.stack
  1795. # Delete some files made during installation.
  1796.     -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
  1797.     -rm -f collect collect2 mips-tfile mips-tdump alloca.s
  1798. # Delete files generated for fixproto
  1799.     -rm -rf fix-header xsys-protos.h deduced.h tmp-deduced.h \
  1800.       gen-protos fixproto.list fixtmp.* fixhdr.ready
  1801. # Delete unwanted output files from TeX.
  1802.     -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
  1803.     -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
  1804. # Delete sorted indices we don't actually use.
  1805.     -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
  1806. # Delete core dumps.
  1807.     -rm -f core */core
  1808.  
  1809. # Delete all files made by compilation
  1810. # that don't exist in the distribution.
  1811. clean: mostlyclean bytecode.clean lang.clean
  1812. # It may not be quite desirable to delete unprotoize.c here,
  1813. # but the spec for `make clean' requires it.
  1814. # Using unprotoize.c is not quite right in the first place, 
  1815. # but what better way is there?
  1816.     -rm -f libgcc.a libgcc1.a libgcc2.a libgcc2.ready
  1817.     -rm -f libgcc1.null $(LIB2FUNCS_EXTRA)
  1818.     -rm -f *.dvi
  1819.     -rm -f */*.dvi
  1820.     -if [ -f md.pre-cpp ]; then \
  1821.       rm -f md ; \
  1822.     fi
  1823. # Delete the include directory.
  1824.     -rm -rf stmp-* include objc-headers
  1825.     -rm -f */stmp-*
  1826. # Delete files used by the "multilib" facility (including libgcc subdirs).
  1827.     -rm -f multilib.h tmpmultilib*
  1828.     -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
  1829.       rm -rf $(MULTILIB_DIRNAMES); \
  1830.     else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
  1831.       rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
  1832.     fi ; fi
  1833.  
  1834. # Delete all files that users would normally create
  1835. # while building and installing GCC.
  1836. distclean: clean bytecode.distclean lang.distclean
  1837.     -rm -f tm.h aux-output.c config.h config.status tconfig.h hconfig.h
  1838.     -rm -f md md.pre-cpp
  1839.     -rm -f Makefile *.oaux
  1840.     -rm -fr stage1 stage2 stage3 stage4
  1841.     -rm -f */stage1 */stage2 */stage3 */stage4 */include
  1842.     -rm -f cp-parse.output
  1843.     -rm -f objc-parse.output
  1844.     -rm -f c-parse.output
  1845.  
  1846. # Delete anything likely to be found in the source directory
  1847. # that shouldn't be in the distribution.
  1848. extraclean: distclean lang.extraclean
  1849.     -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
  1850.     -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
  1851.     -rm -f config/*/=* config/*/"#"* config/*/*~*
  1852.     -rm -f config/*/*.orig config/*/*.rej
  1853.     -rm -f *.dvi *.oaux *.d *.[zZ] *.gz
  1854.     -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
  1855.     -rm -f *lose config/*lose config/*/*lose
  1856.     -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
  1857.     -rm -f */=* */"#"* */*~*
  1858.     -rm -f */patch* */*.orig */*.rej
  1859.     -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
  1860.     -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
  1861.     -rm -f */*lose */*.s */*.s[0-9] */*.i
  1862.  
  1863. # Get rid of every file that's generated from some other file.
  1864. # Most of these files ARE PRESENT in the GCC distribution.
  1865. realclean: distclean bytecode.realclean lang.realclean
  1866.     -rm -f c-parse.y c-gperf.h objc-parse.y
  1867.     -rm -f objc-parse.c objc-parse.output
  1868.     -rm -f c-parse.c c-parse.h c-parse.output
  1869.     -rm -f cexp.c cexp.output TAGS 
  1870.     -rm -f cpp.info* cpp.??s cpp.*aux
  1871.     -rm -f gcc.info* gcc.??s gcc.*aux
  1872.  
  1873. # Entry points `install' and `uninstall'.
  1874. # Also use `install-collect2' to install collect2 when the config files don't.
  1875.  
  1876. # The semicolon is to prevent the install.sh -> install default rule
  1877. # from doing anything.  Having it run true helps avoid problems and
  1878. # noise from versions of make which don't like to have null commands.
  1879. install: $(INSTALL_TARGET) ; @true
  1880.  
  1881. # Copy the compiler files into directories where they will be run.
  1882. install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
  1883.     install-man install-info lang.install-normal
  1884.  
  1885. # Do nothing while making gcc with a cross-compiler. The person who
  1886. # makes gcc for the target machine has to know how to put a complete
  1887. # gcc together by hand.
  1888. install-build: force
  1889.     @echo You have to install gcc on your target machine by hand.
  1890.  
  1891. # Run this on the target machine
  1892. # to finish installation of cross compiler.
  1893. install-cross-rest: install-float-h-cross
  1894.  
  1895. # Install float.h for cross compiler.
  1896. # Run this on the target machine!
  1897. install-float-h-cross: install-dir
  1898. #    if [ -f enquire ] ; then true; else false; fi
  1899. # Note: don't use -.  We should fail right away if enquire was not made.
  1900.     ./enquire -f > $(tmpdir)/float.h
  1901.     -rm -f $(libsubdir)/include/float.h
  1902.     $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
  1903.     -rm -f $(tmpdir)/float.h
  1904.     chmod a-x $(libsubdir)/include/float.h
  1905.  
  1906. # Create the installation directory.
  1907. install-dir:
  1908.     -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
  1909.     -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; fi
  1910. # This dir isn't currently searched by cpp.
  1911. #    -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; fi
  1912.     -if [ -d $(libdir)/gcc-lib/$(target) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target) ; fi
  1913.     -if [ -d $(libdir)/gcc-lib/$(target)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version) ; fi
  1914.     -if [ -d $(libdir)/gcc-lib/$(target)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version)/include ; fi
  1915.     -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
  1916.     -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
  1917.     -if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; fi
  1918.     -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; fi
  1919.     -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
  1920. # We don't use mkdir -p to create the parents of mandir,
  1921. # because some systems don't support it.
  1922. # Instead, we use this technique to create the immediate parent of mandir.
  1923.     -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
  1924.     if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
  1925.     -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
  1926.  
  1927. # Install the compiler executables built during cross compilation.
  1928. install-common: native install-dir xgcc $(EXTRA_PARTS) lang.install-common
  1929.     for file in $(COMPILERS); do \
  1930.       if [ -f $$file ] ; then \
  1931.         rm -f $(libsubdir)/$$file; \
  1932.         $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
  1933.       else true; \
  1934.       fi; \
  1935.     done
  1936.     for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
  1937.       if [ x"$$file" != x.. ]; then \
  1938.         rm -f $(libsubdir)/$$file; \
  1939.         $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
  1940.       else true; fi; \
  1941.     done
  1942.     for file in $(EXTRA_PARTS) ..; do \
  1943.       if [ x"$$file" != x.. ]; then \
  1944.         rm -f $(libsubdir)/$$file; \
  1945.         $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
  1946.       else true; fi; \
  1947.     done
  1948. # Don't mess with specs if it doesn't exist yet.
  1949.     -if [ -f specs ] ; then \
  1950.       rm -f $(libsubdir)/specs; \
  1951.       $(INSTALL_DATA) specs $(libsubdir)/specs; \
  1952.     fi
  1953. # Install the driver program as $(target)-gcc
  1954. # and also as either gcc (if native) or $(tooldir)/bin/gcc.
  1955.     -if [ -f gcc-cross ] ; then \
  1956.       rm -f $(bindir)/$(target)-gcc; \
  1957.       $(INSTALL_PROGRAM) gcc-cross $(bindir)/$(target)-gcc; \
  1958.       if [ -d $(tooldir)/bin/. ] ; then \
  1959.         rm -f $(tooldir)/bin/gcc; \
  1960.         $(INSTALL_PROGRAM) gcc-cross $(tooldir)/bin/gcc; \
  1961.       else true; fi; \
  1962.     else \
  1963.       rm -f $(bindir)/gcc; \
  1964.       $(INSTALL_PROGRAM) xgcc $(bindir)/gcc; \
  1965.       rm -f $(bindir)/$(target)-gcc-1; \
  1966.       $(HARDLINK) $(bindir)/gcc $(bindir)/$(target)-gcc-1; \
  1967.       mv $(bindir)/$(target)-gcc-1 $(bindir)/$(target)-gcc; \
  1968.     fi
  1969. # Install protoize if it was compiled.
  1970.     -if [ -f protoize ]; \
  1971.     then \
  1972.         rm -f $(bindir)/protoize; \
  1973.         $(INSTALL_PROGRAM) protoize $(bindir)/protoize; \
  1974.         rm -f $(bindir)/unprotoize; \
  1975.         $(INSTALL_PROGRAM) unprotoize $(bindir)/unprotoize; \
  1976.         rm -f $(libsubdir)/SYSCALLS.c.X; \
  1977.         $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
  1978.         chmod a-x $(libsubdir)/SYSCALLS.c.X; \
  1979.     fi
  1980.     -rm -f $(libsubdir)/cpp
  1981.     $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
  1982.  
  1983. # Install the info files.
  1984. install-info: doc install-dir lang.install-info
  1985.     -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
  1986.     cd $(srcdir); for f in cpp.info* gcc.info*; \
  1987.     do $(INSTALL_DATA) $$f $(infodir)/$$f; done
  1988.     -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
  1989.  
  1990. # Install the man pages.
  1991. install-man: install-dir $(srcdir)/gcc.1 $(srcdir)/cccp.1 lang.install-man
  1992.     -rm -f $(mandir)/gcc$(manext)
  1993.     -$(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/gcc$(manext)
  1994.     -chmod a-x $(mandir)/gcc$(manext)
  1995.     -rm -f $(mandir)/cccp$(manext)
  1996.     -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
  1997.     -chmod a-x $(mandir)/cccp$(manext)
  1998.  
  1999. # Install the library.
  2000. install-libgcc: libgcc.a install-dir
  2001.     -if [ -f libgcc.a ] ; then \
  2002.       rm -f $(libsubdir)/libgcc.a; \
  2003.       $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
  2004.       if $(RANLIB_TEST) ; then \
  2005.         (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
  2006.       chmod a-x $(libsubdir)/libgcc.a; \
  2007.     else true; fi
  2008.  
  2009. # Install multiple versions of libgcc.a.
  2010. install-multilib: stmp-multilib install-dir
  2011.     for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
  2012.       dir=`echo $$i | sed -e 's/;.*$$//'`; \
  2013.       if [ -d $(libsubdir)/$${dir} ]; then true; else mkdir $(libsubdir)/$${dir}; fi; \
  2014.       rm -f $(libsubdir)/$${dir}/libgcc.a; \
  2015.       $(INSTALL_DATA) $${dir}/libgcc.a $(libsubdir)/$${dir}/libgcc.a; \
  2016.       if $(RANLIB_TEST); then \
  2017.         (cd $(libsubdir)/$${dir}; $(RANLIB) libgcc.a); else true; fi; \
  2018.       chmod a-x $(libsubdir)/$${dir}/libgcc.a; \
  2019.     done
  2020.  
  2021. # Install the objc run time library.
  2022. install-libobjc: libobjc.a install-dir
  2023.     -if [ -f libobjc.a ] ; then \
  2024.       rm -f $(libsubdir)/libobjc.a; \
  2025.       $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
  2026.       if $(RANLIB_TEST) ; then \
  2027.         (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
  2028.       chmod a-x $(libsubdir)/libobjc.a; \
  2029.     else true; fi
  2030.  
  2031. # Install all the header files built in the include subdirectory.
  2032. install-headers: install-include-dir $(INSTALL_HEADERS_DIR) install-assert-h
  2033. # Fix symlinks to absolute paths in the installed include directory to
  2034. # point to the installed directory, not the build directory.
  2035.     -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
  2036.     if [ $$? -eq 0 ]; then \
  2037.       dir=`cd include; pwd`; \
  2038.       for i in $$files; do \
  2039.         dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
  2040.         if expr "$$dest" : "$$dir.*" > /dev/null; then \
  2041.           rm -f $(libsubdir)/include/$$i; \
  2042.           $(HARDLINK) -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
  2043.         fi; \
  2044.       done; \
  2045.     fi
  2046.  
  2047. # Create or recreate the gcc private include file directory.
  2048. install-include-dir: install-dir
  2049.     -rm -rf $(libsubdir)/include
  2050.     mkdir $(libsubdir)/include
  2051.     -chmod a+rx $(libsubdir)/include
  2052.  
  2053. # Install the include directory using tar.
  2054. install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir
  2055.     (cd include; \
  2056.      tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - )
  2057. # /bin/sh on some systems returns the status of the first tar,
  2058. # and that can lose with GNU tar which always writes a full block.
  2059. # So use `exit 0' to ignore its exit status.
  2060.  
  2061. # Install the include directory using cpio.
  2062. install-headers-cpio: stmp-headers $(STMP_FIXPROTO) install-include-dir
  2063.     (cd include; find . -print) | (cd include; cpio -pdum $(libsubdir)/include)
  2064.  
  2065. # Install the include directory using simple recursive copy.
  2066. install-headers-cp: stmp-headers install-include-dir
  2067.     cd include; cp -r . $(libsubdir)/include
  2068.  
  2069. # Put assert.h where it won't override GNU libc's assert.h.
  2070. # It goes in a dir that is searched after GNU libc's headers;
  2071. # thus, the following conditionals are no longer needed.
  2072. # But it's not worth deleting them now.
  2073. ## Don't replace the assert.h already there if it is not from GCC.
  2074. ## This code would be simpler if it tested for -f ... && ! grep ...
  2075. ## but supposedly the ! operator is missing in sh on some systems.
  2076. install-assert-h: assert.h install-dir
  2077.     if [ -f $(assertdir)/assert.h ]; \
  2078.     then \
  2079.       if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
  2080.         then \
  2081.         rm -f $(assertdir)/assert.h; \
  2082.         $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
  2083.         chmod a-x $(assertdir)/assert.h; \
  2084.       else true; \
  2085.       fi; \
  2086.     else \
  2087.       rm -f $(assertdir)/assert.h; \
  2088.       $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
  2089.       chmod a-x $(assertdir)/assert.h; \
  2090.     fi
  2091.  
  2092. # Use this target to install the program `collect2' under the name `ld'.
  2093. install-collect2: collect2 install-dir
  2094.     $(INSTALL_PROGRAM) collect2 $(libsubdir)/ld
  2095. # Install the driver program as $(libsubdir)/gcc for collect2.
  2096.     $(INSTALL_PROGRAM) xgcc $(libsubdir)/gcc
  2097.  
  2098. # Cancel installation by deleting the installed files.
  2099. uninstall: lang.uninstall
  2100.     -rm -rf $(libsubdir)
  2101.     -rm -rf $(bindir)/gcc
  2102.     -rm -rf $(bindir)/protoize
  2103.     -rm -rf $(bindir)/unprotoize
  2104.     -rm -rf $(mandir)/gcc$(manext)
  2105.     -rm -rf $(mandir)/cccp$(manext)
  2106.     -rm -rf $(mandir)/protoize$(manext)
  2107.     -rm -rf $(mandir)/unprotoize$(manext)
  2108.  
  2109. # These exist for maintenance purposes.
  2110.  
  2111. # Update the tags table.
  2112. TAGS: force
  2113.     cd $(srcdir);                            \
  2114.     mkdir temp;                            \
  2115.     mv -f c-parse.[ch] objc-parse.c cexp.c =*.[chy] temp;        \
  2116.     etags *.y *.h *.c;                        \
  2117.     mv temp/* .;                            \
  2118.     rmdir temp
  2119.  
  2120. # Create the distribution tar file.
  2121. #dist: gcc-$(version).tar.gz
  2122. dist: gcc.xtar.gz
  2123.  
  2124. gcc.xtar.gz: gcc.xtar
  2125.     gzip --best < gcc.xtar > tmp-gcc.xtar.gz
  2126.     mv tmp-gcc.xtar.gz gcc.xtar.gz
  2127.  
  2128. #gcc-$(version).tar.gz: gcc-$(version).tar
  2129. #    gzip < gcc-$(version).tar > gcc-$(version).tar.gz
  2130.  
  2131. #gcc-$(version).tar:
  2132. gcc.xtar: distdir
  2133. # Make the distribution.
  2134.     tar -chf gcc.xtar gcc-$(version)
  2135.  
  2136. # This target exists to do the initial work before the language specific
  2137. # stuff gets done.
  2138. distdir-start: doc $(srcdir)/INSTALL c-parse.y $(srcdir)/c-gperf.h objc-parse.y \
  2139.   c-parse.c objc-parse.c cexp.c
  2140.     @if grep -s "for version ${mainversion}" gcc.texi > /dev/null; \
  2141.     then true; \
  2142.     else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
  2143.     fi
  2144. # Update the version number in README
  2145.     awk '$$1 " " $$2 " " $$3 == "This directory contains" \
  2146.         { $$6 = version; print $$0 } \
  2147.          $$1 " " $$2 " " $$3 != "This directory contains"' \
  2148.       version=$(version) README > tmp.README
  2149.     mv tmp.README README
  2150.     -rm -rf gcc-$(version) tmp    
  2151. # Put all the files in a temporary subdirectory
  2152. # which has the name that we want to have in the tar file.
  2153.     mkdir tmp
  2154.     mkdir tmp/config
  2155.     mkdir tmp/ginclude
  2156.     mkdir tmp/objc
  2157.     for file in *[0-9a-zA-Z+]; do \
  2158.       $(HARDLINK) $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
  2159.     done
  2160.     cd config; \
  2161.     for file in *[0-9a-zA-Z+]; do \
  2162.       if test -d $$file && test "$$file" != RCS; then \
  2163.         mkdir ../tmp/config/$$file; \
  2164.         cd $$file; \
  2165.         for subfile in *[0-9a-zA-Z+]; do \
  2166.           $(HARDLINK) $$subfile ../../tmp/config/$$file >/dev/null 2>&1 \
  2167.           || cp $$subfile ../../tmp/config/$$file; \
  2168.         done; \
  2169.         cd ..; \
  2170.       else \
  2171.         $(HARDLINK) $$file ../tmp/config >/dev/null 2>&1 \
  2172.         || cp $$file ../tmp/config; \
  2173.       fi; \
  2174.     done
  2175.     cd ginclude; \
  2176.     for file in *[0-9a-zA-Z+]; do \
  2177.       $(HARDLINK) $$file ../tmp/ginclude >/dev/null 2>&1 || cp $$file ../tmp/ginclude; \
  2178.     done
  2179.     cd objc; \
  2180.     for file in *[0-9a-zA-Z+]; do \
  2181.       $(HARDLINK) $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
  2182.     done
  2183.     $(HARDLINK) .gdbinit tmp
  2184.  
  2185. # Finish making `distdir', after the languages have done their thing.
  2186. distdir-finish:
  2187.     mv tmp gcc-$(version)
  2188. # Get rid of everything we don't want in the distribution.  We'd want
  2189. # this to use Makefile.in, but it doesn't have the `lang.foo' targets
  2190. # expanded.
  2191.     cd gcc-$(version); make extraclean
  2192.  
  2193. distdir: distdir-start lang.distdir distdir-finish
  2194.  
  2195. # make diff oldversion=M.N 
  2196. # creates a diff file between an older distribution and this one.
  2197. # The -P option assumes this is GNU diff.
  2198. diff:
  2199.     diff -rc2P -x c-parse.y -x c-parse.c -x c-parse.h -x c-gperf.h \
  2200.       -x cexp.c -x bi-parser.c -x objc-parse.y -x objc-parse.c \
  2201.       -x TAGS \
  2202.       -x "gcc.??" -x "gcc.??s" -x gcc.aux -x "gcc.info*" \
  2203.       -x "cpp.??" -x "cpp.??s" -x cpp.aux -x "cpp.info*" \
  2204.       $(LANG_DIFF_EXCLUDES) \
  2205.       gcc-$(oldversion) gcc-$(version) > diffs
  2206.  
  2207. # do make -f ../gcc/Makefile maketest DIR=../gcc
  2208. # in the intended test directory to make it a suitable test directory.
  2209. # THIS IS OBSOLETE; use the -srcdir operand in configure instead. 
  2210. maketest:
  2211.     $(SYMLINK) $(DIR)/*.[chy] .
  2212.     $(SYMLINK) $(DIR)/configure .
  2213.     $(SYMLINK) $(DIR)/*.def .
  2214.     -rm -f =*
  2215.     $(SYMLINK) $(DIR)/.gdbinit .
  2216.     $(SYMLINK) $(DIR)/$(FIXINCLUDES) .
  2217.     -$(SYMLINK) $(DIR)/bison.simple .
  2218.     $(SYMLINK) $(DIR)/config .
  2219.     $(SYMLINK) $(DIR)/move-if-change .
  2220. # The then and else were swapped to avoid a problem on Ultrix.
  2221.     if [ ! -f Makefile ] ; then $(SYMLINK) $(DIR)/Makefile .; else false; fi
  2222.     -rm tm.h aux-output.c config.h md
  2223.     make clean
  2224. # You must then run config to set up for compilation.
  2225.  
  2226. bootstrap: force
  2227. # Only build the C compiler for stage1, because that is the only one that
  2228. # we can guarantee will build with the native compiler, and also it is the
  2229. # only thing useful for building stage2.
  2230.     $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES=c
  2231.     $(MAKE) stage1
  2232. # This used to define ALLOCA as empty, but that would lead to bad results
  2233. # for a subsequent `make install' since that would not have ALLOCA empty.
  2234. # To prevent `make install' from compiling alloca.o and then relinking cc1
  2235. # because alloca.o is newer, we permit these recursive makes to compile
  2236. # alloca.o.  Then cc1 is newer, so it won't have to be relinked.
  2237.     $(MAKE) CC="stage1/$(XGCC) -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
  2238.     $(MAKE) stage2
  2239.     $(MAKE) CC="stage2/$(XGCC) -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
  2240.  
  2241. bootstrap2: force
  2242.     $(MAKE) CC="stage1/$(XGCC) -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
  2243.     $(MAKE) stage2
  2244.     $(MAKE) CC="stage2/$(XGCC) -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
  2245.  
  2246. bootstrap3: force
  2247.     $(MAKE) CC="stage2/$(XGCC) -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
  2248.  
  2249. # Compare the object files in the current directory with those in the
  2250. # stage2 directory.
  2251.  
  2252. # ./ avoids bug in some versions of tail.
  2253. compare: force
  2254.     for file in *.o; do \
  2255.       tail +16c ./$$file > tmp-foo1; \
  2256.       tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
  2257.         && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
  2258.     done
  2259.     for dir in tmp-foo $(SUBDIRS); do \
  2260.       if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
  2261.         for file in $$dir/*.o; do \
  2262.           tail +16c ./$$file > tmp-foo1; \
  2263.           tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
  2264.             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
  2265.         done; \
  2266.       fi; \
  2267.     done
  2268.     -rm -f tmp-foo*
  2269.  
  2270. # Similar, but compare with stage3 directory
  2271. compare3: force
  2272.     for file in *.o; do \
  2273.       tail +16c ./$$file > tmp-foo1; \
  2274.       tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
  2275.         && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
  2276.     done
  2277.     for dir in tmp-foo $(SUBDIRS); do \
  2278.       if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
  2279.         for file in $$dir/*.o; do \
  2280.           tail +16c ./$$file > tmp-foo1; \
  2281.           tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
  2282.             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
  2283.         done; \
  2284.       fi; \
  2285.     done
  2286.     -rm -f tmp-foo*
  2287.  
  2288. # Compare the object files in the current directory with those in the
  2289. # stage2 directory.  Use gnu cmp (diffutils v2.4 or later) to avoid
  2290. # running tail and the overhead of twice copying each object file.
  2291.  
  2292. gnucompare: force
  2293.     for file in *.o; do \
  2294.       cmp --ignore-initial=16 $$file stage2/$$file || true ; \
  2295.     done
  2296.     for dir in tmp-foo $(SUBDIRS); do \
  2297.       if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
  2298.         for file in $$dir/*.o; do \
  2299.           cmp --ignore-initial=16 $$file stage2/$$file || true ; \
  2300.         done; \
  2301.       fi; \
  2302.     done
  2303.  
  2304. # Similar, but compare with stage3 directory
  2305. gnucompare3: force
  2306.     for file in *.o; do \
  2307.       cmp --ignore-initial=16 $$file stage3/$$file || true ; \
  2308.     done
  2309.     for dir in tmp-foo $(SUBDIRS); do \
  2310.       if [ "`echo $$dir/*.o`" != "$$dir/*.o" ] ; then \
  2311.         for file in $$dir/*.o; do \
  2312.           cmp --ignore-initial=16 $$file stage3/$$file || true ; \
  2313.         done; \
  2314.       fi; \
  2315.     done
  2316.  
  2317. # Copy the object files from a particular stage into a subdirectory.
  2318. stage1-start:
  2319.     -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
  2320.     -for dir in . $(SUBDIRS) ; \
  2321.      do \
  2322.        if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi; \
  2323.      done
  2324.     -mv $(STAGESTUFF) stage1
  2325.     -rm -f stage1/libgcc.a
  2326.     -cp libgcc.a stage1
  2327.     -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
  2328. stage1: force stage1-start lang.stage1
  2329.  
  2330. stage2-start:
  2331.     -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
  2332.     -for dir in . $(SUBDIRS) ; \
  2333.      do \
  2334.        if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi; \
  2335.      done
  2336.     -mv $(STAGESTUFF) stage2
  2337.     -rm -f stage2/libgcc.a
  2338.     -cp libgcc.a stage2
  2339.     -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
  2340. stage2: force stage2-start lang.stage2
  2341.  
  2342. stage3-start:
  2343.     -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
  2344.     -for dir in . $(SUBDIRS) ; \
  2345.      do \
  2346.        if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi; \
  2347.      done
  2348.     -mv $(STAGESTUFF) stage3
  2349.     -rm -f stage3/libgcc.a
  2350.     -cp libgcc.a stage3
  2351.     -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
  2352. stage3: force stage3-start lang.stage3
  2353.  
  2354. stage4-start:
  2355.     -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
  2356.     -for dir in . $(SUBDIRS) ; \
  2357.      do \
  2358.        if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi; \
  2359.      done
  2360.     -mv $(STAGESTUFF) stage4
  2361.     -rm -f stage4/libgcc.a
  2362.     -cp libgcc.a stage4
  2363.     -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
  2364. stage4: force stage4-start lang.stage4
  2365.  
  2366. # Copy just the executable files from a particular stage into a subdirectory,
  2367. # and delete the object files.  Use this if you're just verifying a version
  2368. # that is pretty sure to work, and you are short of disk space.
  2369. risky-stage1: force
  2370.     -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
  2371.     -mv $(GCC_PARTS) stage1
  2372.     -rm -f stage1/libgcc.a
  2373.     -cp libgcc.a stage1 && $(RANLIB) stage1/libgcc.a
  2374.     -make clean
  2375.  
  2376. risky-stage2: force
  2377.     -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
  2378.     -mv $(GCC_PARTS) stage2
  2379.     -rm -f stage2/libgcc.a
  2380.     -cp libgcc.a stage2 && $(RANLIB) stage2/libgcc.a
  2381.     -make clean
  2382.  
  2383. risky-stage3: force
  2384.     -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
  2385.     -mv $(GCC_PARTS) stage3
  2386.     -rm -f stage3/libgcc.a
  2387.     -cp libgcc.a stage3 && $(RANLIB) stage3/libgcc.a
  2388.     -make clean
  2389.  
  2390. risky-stage4: force
  2391.     -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
  2392.     -mv $(GCC_PARTS) stage4
  2393.     -rm -f stage4/libgcc.a
  2394.     -cp libgcc.a stage4 && $(RANLIB) stage4/libgcc.a
  2395.     -make clean
  2396.  
  2397. #In GNU Make, ignore whether `stage*' exists.
  2398. .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
  2399. .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
  2400.  
  2401. force:
  2402.