home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / GCC 1.37.1r14 / usr / gcc-1.37.1r14 / (gcc-1.37.π) / Makefile < prev    next >
Encoding:
Makefile  |  1993-07-01  |  26.6 KB  |  710 lines  |  [TEXT/KAHL]

  1. # Makefile for GNU C compiler.
  2. #   Copyright (C) 1987, 1988 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 1, 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.  
  21. # Variables that exist for you to override.
  22. # See below for how to change them for certain systems.
  23.  
  24. CFLAGS = -g $(XCFLAGS)
  25. CC = acc
  26. BISON = bison
  27. BISONFLAGS = -v
  28. # This should be the version of ar to use with output from GCC.
  29. AR = ar
  30. SHELL = /bin/sh
  31. # on sysV, define this as cp.
  32. INSTALL = install -c
  33. # Directory not specified here so that, if a GNU ranlib
  34. # is earlier in the path, it will be used.
  35. # That is likely to be true on systems that have the GNU ar
  36. # installed earlier in the path.
  37. RANLIB = ranlib
  38.  
  39. # Compiler to use for compiling gnulib.
  40. # OLDCC should not be the GNU C compiler.
  41. OLDCC = cc
  42.  
  43. # CFLAGS for use with OLDCC, for compiling gnulib.
  44. # NOTE: -O does not work on some Unix systems!
  45. # On them, you must take it out.
  46. CCLIBFLAGS=-O
  47.  
  48. # This should be the version of ar to use with output from $(OLDCC).
  49. OLDAR = ar
  50.  
  51. # CFLAGS for use with OLDCC, for compiling hard-params.
  52. HARD_PARAMS_FLAGS=
  53.  
  54. # Directory where sources are, from where we are.
  55. srcdir = .
  56. # Directory in which to put the executable for the command `gcc'
  57. bindir = $(prefix)/usr/ccl
  58. # Directory in which to put the subprograms used by the compiler.
  59. libdir = $(prefix)/usr/ccl/lib
  60. # Directory in which to put man pages.
  61. mandir = $(prefix)/usr/ccl/man/mann
  62. # Number to put in man-page filename.
  63. manext = n
  64.  
  65. # Additional system libraries to link with.
  66. CLIB=
  67.  
  68. # Change this to a null string if obstacks are installed in the
  69. # system library.
  70. OBSTACK=obstack.o
  71.  
  72. # Directory to link to, when using the target `maketest'.
  73. DIR = ../gcc
  74.  
  75. # End of variables for you to override.
  76.  
  77.  
  78. # Variables you should change for certain systems.
  79.  
  80. # These are what you would need on HPUX:
  81. # CFLAGS = -Wc,-Ns2000 -Wc,-Ne700 -Wc,-Np300
  82. # If you are using the GNU assembler and linker on HPUX,
  83. # add -I../hp-include to CFLAGS.
  84. # -g is desirable in CFLAGS, but a compiler bug in HPUX version 5
  85. # bites whenever tree.def, rtl.def or machmode.def is included
  86. # (ie., on every source file).
  87. # If you have a floating point accelerator, you might want -lsetjmp as well.
  88. # CCLIBFLAGS = -Wc,-Ns2000 -Wc,-Ne700 -O
  89. # HARD_PARAMS_FLAGS = -Wc,-Ns2000 -Wc,-Ne700
  90. # INSTALL = cp
  91. # For CCLIBFLAGS you might want to specify the switch that
  92. # forces only 68000 instructions to be used.
  93. # If using the GNU assembler and linker, set AR to the GNU ar program,
  94. # wherever that is.
  95. # To get a working alloca, you may need to get alloca.s from Emacs
  96. # and assemble it into alloca.o rather than using alloca.c.
  97.  
  98. # On the Sequent, you may need to set CCLIBFLAG to empty.
  99.  
  100. # On the 3b1, this line may help you compile gnulib
  101. # if you already have a prior version of gcc installed.
  102. # CCLIBFLAGS = -B/usr/local/lib/gcc- -tp -Wp,-traditional
  103.  
  104. # On SysV from SCO, uncomment these lines as well as those for SysV in general.
  105. # You might also want to remove limits.h from the definition of USER_H,
  106. # since the one that comes with the system is good for POSIX.
  107. # RANLIB = :
  108. # CC = rcc
  109. # OLDCC = rcc
  110.  
  111. # On a 386 running an ISC system, uncomment the following lines.
  112. # You also need to add -D_POSIX_SOURCE to CFLAGS
  113. # when compiling with GCC.
  114. # INSTALL = cp
  115. # CLIB = -lPW -lcposix
  116.  
  117. # If you are making gcc for the first time, and if you are compiling it with
  118. # a non-gcc compiler, and if your system doesn't have a working alloca() in any
  119. # of the standard libraries (as is true for HP/UX or Genix),
  120. # then un-comment the following line when compiling with the system's cc:
  121. # ALLOCA = alloca.o
  122. # But don't do that if compiling using GCC.
  123.  
  124. # If your system has a working alloca in /lib/libPW.a,
  125. # un-comment the following line.  Note that -lPW doesn't work on HPUX or IRIX.
  126. # CLIB= -lPW
  127.  
  128. # On SysV R4, when compiling with PCC, you can get alloca as follows:
  129. # CLIB = -lc /usr/ucblib/libucb.a
  130. # -lc is needed because if libucb.a were searched before libc.a,
  131. # you would get an incompatible stdio package that won't work.
  132.  
  133. # On the NCR Tower 32 running SVR3, says ra@intsys.no :
  134. # Do *not* enable optimization in CFLAGS when using the native cc, because:
  135. # a) The optimizer seems to loop when invoked with -O2.
  136. # b) The -O1 level does stack/frame pointer optimizations that make the
  137. #    assembler alloca in libPW.a fail, and the C alloca eats *lots* of memory.
  138. # c) gcc will eventually be recompiled with itself, so all this doesn't matter.
  139. # CFLAGS = -g -O0
  140. # HARD_PARAMS_FLAGS = -O0
  141. # CCLIBFLAGS = -O2
  142. # CLIB = -lmalloc -lPW
  143.  
  144. # On a pyramid, you need to uncomment the following line:
  145. # CLIB = -lc /usr/.attlib/libPW.a
  146.  
  147. # If your system's malloc() routine fails for any reason (as it does on
  148. # certain versions of Genix), try getting the files
  149. # malloc.c and getpagesize.h from GNU Emacs and un-comment the following line:
  150. # MALLOC = malloc.o
  151.  
  152. # To build gcc for Apollo 68K machines you must be running at least SR10.2
  153. # with the 6.7 version of the C compiler. Use 'apollo68' as the argument to
  154. # config.gcc, then go into a bsd4.3 environment and use this:
  155. # CFLAGS = -g -O -Acpu,3000 -Arun,bsd4.3 -Asys,any -Anansi $(XCFLAGS)
  156. # CCLIBFLAGS = -O -Acpu,3000 -Arun,bsd4.3 -Asys,any -Anansi
  157. # HARD_PARAMS_FLAGS= -Anansi
  158. # (Says vasta@apollo.com.)
  159.  
  160.  
  161. # Dependency on obstack, alloca, malloc or whatever library facilities
  162. # are not installed in the system libraries.
  163. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  164.  
  165. # How to link with both our special library facilities
  166. # and the system's installed libraries.
  167. LIBS = $(OBSTACK) $(ALLOCA) $(MALLOC) $(CLIB)
  168.  
  169. # Specify the directories to be searched for header files.
  170. # Both . and srcdir are used, in that order,
  171. # so that tm.h and config.h will be found in the compilation
  172. # subdirectory rather than in the source directory.
  173. INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
  174. SUBDIR_INCLUDES = -I.. -I../$(srcdir) -I../$(srcdir)/config
  175.  
  176. # Always use -I$(srcdir)/config when compiling.
  177. .c.o:
  178.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(INCLUDES) $<
  179.  
  180. # Language-specific object files for C.
  181. C_OBJS = c-parse.tab.o c-decl.o c-typeck.o c-convert.o
  182.  
  183. # Language-specific object files for C++.
  184. # (These are not yet released.)
  185. CPLUS_OBJS = cplus-parse.o cplus-decl.o cplus-typeck.o \
  186.    cplus-cvt.o cplus-search.o cplus-lex.o \
  187.    cplus-class.o cplus-init.o cplus-method.o
  188.  
  189. # Language-independent object files.
  190. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  191.  rtl.o rtlanal.o expr.o stmt.o expmed.o explow.o optabs.o varasm.o \
  192.  symout.o dbxout.o sdbout.o emit-rtl.o insn-emit.o \
  193.  integrate.o jump.o cse.o loop.o flow.o stupid.o combine.o \
  194.  regclass.o local-alloc.o global-alloc.o reload.o reload1.o caller-save.o \
  195.  insn-peep.o final.o recog.o insn-recog.o insn-extract.o insn-output.o \
  196.  parameter.o
  197.  
  198. # Files to be copied away after each stage in building.
  199. STAGE_GCC=gcc
  200. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  201.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  202.  stamp-flags stamp-config stamp-codes \
  203.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  204.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  205.  cc1 cpp cccp # cc1plus
  206.  
  207. # Members of gnulib.
  208. LIBFUNCS = _eprintf _builtin_new _builtin_New _builtin_del _bb \
  209.    _umulsi3 _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
  210.    _lshrsi3 _lshlsi3 _ashrsi3 _ashlsi3 \
  211.    _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 _cmpdf2 \
  212.    _fixunsdfsi _fixdfsi _floatsidf _truncdfsf2 _extendsfdf2 \
  213.    _addsf3 _negsf2 _subsf3 _cmpsf2 _mulsf3 _divsf3
  214.  
  215. # Library members defined in gnulib2.c.
  216. LIB2FUNCS = _adddi3 _subdi3 _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
  217.     _anddi3 _iordi3 _xordi3 _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 _one_cmpldi2  \
  218.     _bdiv _cmpdi2 _ucmpdi2 _fixunsdfdi _fixdfdi _floatdidf _varargs
  219.  
  220. # Header files that are made available to programs compiled with gcc.
  221. USER_H = stddef.h assert.h va-i860.h va-mips.h va-pyr.h va-sparc.h \
  222.     va-spur.h limits.h proto.h
  223.  
  224. # The files that "belong" in CONFIG_H are deliberately omitted
  225. # because having them there would not be useful in actual practice.
  226. # All they would do is cause complete recompilation every time
  227. # one of the machine description files is edited.
  228. # That may or may not be what one wants to do.
  229. # If it is, rm *.o is an easy way to do it.
  230. # CONFIG_H = config.h tm.h
  231. CONFIG_H =
  232. RTL_H = rtl.h rtl.def machmode.def
  233. TREE_H = tree.h real.h tree.def machmode.def
  234. CPLUS_TREE_H = $(TREE_H) cplus-tree.h c-tree.h
  235.  
  236. # Note that dependencies on obstack.h are not written
  237. # because that file is not part of GCC.
  238. # Dependencies on gvarargs.h are not written
  239. # because all that file does, when not compiling with GCC,
  240. # is include the system varargs.h.
  241.  
  242. all: config.status gnulib gcc cc1 cpp float.h gnulib2 # cc1plus
  243.  
  244. # Use this instead of `all' if you need to convert the libraries
  245. # before you can use the compiler.
  246. # Don't forget to do `make gnulib2' before installation.
  247. all-libconvert: config.status gnulib gcc cc1 cpp float.h # cc1plus
  248.  
  249. lang-c: config.status gnulib gcc cc1 cpp gnulib2
  250. # lang-cplus: config.status gnulib gcc cc1plus cpp gnulib2
  251.  
  252. config.status:
  253.     @echo You must configure gcc.  Look at the INSTALL file for details.
  254.     @false
  255.  
  256. doc: $(srcdir)/cpp.info $(srcdir)/gplus.info $(srcdir)/gcc.info
  257.  
  258. compilations: ${OBJS}
  259.  
  260. gcc: gcc.o version.o $(LIBDEPS)
  261.     $(CC) $(CFLAGS) $(LDFLAGS) -o gccnew gcc.o version.o $(LIBS)
  262. # Go via `gccnew' to avoid `file busy' if $(CC) is `gcc'.
  263.     mv gccnew gcc
  264.  
  265. cc1: $(C_OBJS) $(OBJS) $(LIBDEPS)
  266.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(LIBS)
  267.  
  268. cc1plus: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  269.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
  270.  
  271. #Library of arithmetic subroutines
  272. # Don't compile this with gcc!
  273. # (That would cause most arithmetic functions to call themselves.)
  274. gnulib: gnulib.c $(CONFIG_H) config.status
  275.     -rm -f stamp-gnulib2
  276.     rm -f tmpgnulib gnulib; \
  277.     for name in $(LIBFUNCS); \
  278.     do \
  279.       echo $${name}; \
  280.       rm -f $${name}.c; \
  281.       cp $(srcdir)/gnulib.c $${name}.c; \
  282.       $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $${name}.c; \
  283.       $(OLDAR) qc tmpgnulib $${name}.o; \
  284.       rm -f $${name}.[co]; \
  285.     done
  286.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ;then $(RANLIB) tmpgnulib; else true; fi
  287. # Actually build it in tmpgnulib above, then rename now,
  288. # so that gnulib itself remains nonexistent if compilation is aborted.
  289.     mv tmpgnulib gnulib
  290. # On HPUX, if you are working with the GNU assembler and linker,
  291. # the previous two command lines must be replaced with the following line.
  292. # No change is needed here if you are using the HPUX assembler and linker.
  293. #    ../hp-bin/hpxt tmpgnulib gnulib
  294.  
  295. gnulib2: stamp-gnulib2;
  296. stamp-gnulib2: gnulib2.c gnulib cc1 gcc cpp $(CONFIG_H)
  297.     for name in $(LIB2FUNCS); \
  298.     do \
  299.       echo $${name}; \
  300.       ./gcc -B./ -fstrength-reduce -O $(INCLUDES) $(GNULIB2_CFLAGS) -c -DL$${name} $(srcdir)/gnulib2.c -o $${name}.o; \
  301.       $(AR) rc gnulib $${name}.o; \
  302.       rm -f $${name}.o; \
  303.     done
  304.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then $(RANLIB) gnulib; else true; fi
  305. # On HPUX, if you are working with the GNU assembler and linker,
  306. # the previous line must be commented out.
  307. # No change is needed here if you are using the HPUX assembler and linker.
  308.     touch stamp-gnulib2
  309.  
  310. float.h:
  311. # Originally, we used `make' rather than $(MAKE), to avoid propagating
  312. # a CC=gcc command option.  However, since hard-params is now made
  313. # with $(OLDCC) explicitly, this is no longer important.
  314. # However, $(MAKE) fails on some systems where it isn't defined.
  315. # `make' has the disadvantage of sometimes running the system's make,
  316. # instead of GNU make.  And the system's make might not support VPATH.
  317. # However, the compilation of hard-params should not need to use VPATH,
  318. # due to the explicit use of `$(srcdir)'.
  319.     make hard-params \
  320.         HARD_PARAMS_FLAGS="$(HARD_PARAMS_FLAGS)" \
  321.         CPPFLAGS="$(CPPFLAGS)" \
  322.         LDFLAGS="$(LDFLAGS)"
  323.     -./hard-params -f > float.h
  324.  
  325. # Compile hard-params with standard cc.  It avoids some headaches.
  326. hard-params: hard-params.o
  327.     $(OLDCC) $(HARD_PARAMS_FLAGS) $(LDFLAGS) hard-params.o -o $@
  328. hard-params.o: $(srcdir)/hard-params.c
  329.     -cp $(srcdir)/hard-params.c . > /dev/null 2>&1
  330.     $(OLDCC) $(HARD_PARAMS_FLAGS) $(CPPFLAGS) -DNO_SC -c hard-params.c
  331.  
  332. # C language specific files.
  333.  
  334. c-parse.tab.o : $(srcdir)/c-parse.tab.c $(CONFIG_H) $(TREE_H) c-parse.h c-tree.h input.h
  335.     $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.tab.c
  336. $(srcdir)/c-parse.tab.c : $(srcdir)/c-parse.y
  337.     $(BISON) $(BISONFLAGS) $(srcdir)/c-parse.y -o $@
  338.  
  339. c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-parse.h flags.h
  340. c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
  341. c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H)
  342.  
  343. # C++ language specific files.
  344.  
  345. cplus-parse.o : $(srcdir)/cplus-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  346.     $(CC) -c $(CFLAGS) $(INCLUDES) \
  347.   -DPARSE_OUTPUT=\"$(PWD)/cplus-parse.output\" \
  348.   `echo $(srcdir)/cplus-parse.c | sed 's,^\./,,'`
  349.  
  350. $(srcdir)/cplus-parse.h $(srcdir)/cplus-parse.c : $(srcdir)/cplus-parse.y
  351.     @echo expect 49 shift/reduce conflicts and 4 reduce/reduce conflicts
  352.     $(BISON) $(BISONFLAGS) -d -o $(srcdir)/cplus-parse.c $(srcdir)/cplus-parse.y
  353.  
  354. cplus-lex.o : cplus-lex.c $(CONFIG_H) $(CPLUS_TREE_H) $(srcdir)/cplus-parse.h
  355. cplus-decl.o : cplus-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  356. cplus-typeck.o : cplus-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  357. cplus-class.o : cplus-class.c $(CONFIG_H) $(CPLUS_TREE_H)
  358. cplus-init.o : cplus-init.c $(CONFIG_H) $(CPLUS_TREE_H)
  359. cplus-method.o : cplus-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  360. cplus-cvt.o : cplus-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  361. cplus-search.o : cplus-search.c $(CONFIG_H) $(CPLUS_TREE_H)
  362. new-method.o : new-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  363.  
  364. # Language-independent files.
  365.  
  366. gcc.o: gcc.c $(CONFIG_H) gvarargs.h obstack.h
  367.     $(CC) $(CFLAGS) $(INCLUDES) \
  368.   -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
  369.   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-\" -c \
  370.   `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
  371.  
  372. version.o: version.c
  373. obstack.o: obstack.c
  374.  
  375. tree.o : tree.c $(CONFIG_H) $(TREE_H) flags.h
  376. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  377. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) $(RTL_H)
  378. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H)
  379. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h
  380.  
  381. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  382.  
  383. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  384.  
  385. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h expr.h \
  386.    insn-codes.h hard-reg-set.h
  387. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  388.    insn-flags.h insn-config.h insn-codes.h expr.h regs.h hard-reg-set.h recog.h
  389. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  390.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h typeclass.h
  391. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  392.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  393. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h
  394. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  395.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  396. symout.o : symout.c $(CONFIG_H) $(TREE_H) $(RTL_H) symseg.h gdbfiles.h
  397. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h
  398. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H)
  399.  
  400. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) regs.h insn-config.h real.h
  401.  
  402. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h \
  403.    insn-flags.h insn-codes.h
  404.  
  405. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h regs.h
  406. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h
  407.  
  408. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h
  409. loop.o : loop.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  410.    regs.h hard-reg-set.h recog.h flags.h expr.h
  411. flow.o : flow.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h
  412. combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h  \
  413.    insn-config.h regs.h basic-block.h recog.h
  414. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  415.    basic-block.h regs.h insn-config.h recog.h 
  416. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h regs.h \
  417.    hard-reg-set.h insn-config.h recog.h
  418. global-alloc.o : global-alloc.c $(CONFIG_H) $(RTL_H) flags.h  \
  419.    basic-block.h regs.h hard-reg-set.h insn-config.h
  420.  
  421. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  422.    reload.h recog.h hard-reg-set.h insn-config.h regs.h
  423. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h  \
  424.    reload.h regs.h hard-reg-set.h insn-config.h basic-block.h recog.h
  425. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  426.    reload.h regs.h hard-reg-set.h insn-config.h basic-block.h recog.h
  427. final.o : final.c $(CONFIG_H) $(RTL_H) flags.h regs.h recog.h conditions.h \
  428.    gdbfiles.h insn-config.h real.h output.h
  429. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  430.    regs.h recog.h hard-reg-set.h insn-config.h real.h
  431.  
  432. # Normally this target is not used; but it is used if you
  433. # define ALLOCA=alloca.o.  In that case, you must get a suitable alloca.c
  434. # from the GNU Emacs distribution.
  435. # Note some machines won't allow $(CC) without -S on this source file.
  436. alloca.o:    alloca.c
  437.     $(CC) $(CFLAGS) -S `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
  438.     as alloca.s -o alloca.o
  439.  
  440. # Now the source files that are generated from the machine description.
  441.  
  442. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  443.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c
  444.  
  445. # The following pair of rules has this effect:
  446. # genconfig is run only if the md has changed since genconfig was last run;
  447. # but the file insn-config.h is touched only when its contents actually change.
  448.  
  449. # Each of the other insn-* files is handled by a similar pair of rules.
  450.  
  451. insn-config.h: stamp-config ;
  452. stamp-config : md genconfig $(srcdir)/move-if-change
  453.     ./genconfig md > tmp-config.h
  454.     $(srcdir)/move-if-change tmp-config.h insn-config.h
  455.     touch stamp-config
  456.  
  457. insn-flags.h: stamp-flags ;
  458. stamp-flags : md genflags $(srcdir)/move-if-change
  459.     ./genflags md > tmp-flags.h
  460.     $(srcdir)/move-if-change tmp-flags.h insn-flags.h
  461.     touch stamp-flags
  462.  
  463. insn-codes.h: stamp-codes ;
  464. stamp-codes : md gencodes $(srcdir)/move-if-change
  465.     ./gencodes md > tmp-codes.h
  466.     $(srcdir)/move-if-change tmp-codes.h insn-codes.h
  467.     touch stamp-codes
  468.  
  469. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h insn-codes.h \
  470.   insn-config.h insn-flags.h
  471.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-emit.c
  472.  
  473. insn-emit.c: stamp-emit ;
  474. stamp-emit : md genemit $(srcdir)/move-if-change
  475.     ./genemit md > tmp-emit.c
  476.     $(srcdir)/move-if-change tmp-emit.c insn-emit.c
  477.     touch stamp-emit
  478.  
  479. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h real.h recog.h
  480.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-recog.c
  481.  
  482. insn-recog.c: stamp-recog ;
  483. stamp-recog : md genrecog $(srcdir)/move-if-change
  484.     ./genrecog md > tmp-recog.c
  485.     $(srcdir)/move-if-change tmp-recog.c insn-recog.c
  486.     touch stamp-recog
  487.  
  488. insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
  489.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-extract.c
  490.  
  491. insn-extract.c: stamp-extract ;
  492. stamp-extract : md genextract $(srcdir)/move-if-change
  493.     ./genextract md > tmp-extract.c
  494.     $(srcdir)/move-if-change tmp-extract.c insn-extract.c
  495.     touch stamp-extract
  496.  
  497. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h real.h
  498.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-peep.c
  499.  
  500. insn-peep.c: stamp-peep ;
  501. stamp-peep : md genpeep $(srcdir)/move-if-change
  502.     ./genpeep md > tmp-peep.c
  503.     $(srcdir)/move-if-change tmp-peep.c insn-peep.c
  504.     touch stamp-peep
  505.  
  506. insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
  507.     hard-reg-set.h insn-config.h insn-flags.h output.h aux-output.c
  508.     $(CC) $(CFLAGS) $(INCLUDES) -c insn-output.c
  509.  
  510. insn-output.c: stamp-output ;
  511. stamp-output : md genoutput $(srcdir)/move-if-change
  512.     ./genoutput md > tmp-output.c
  513.     $(srcdir)/move-if-change tmp-output.c insn-output.c
  514.     touch stamp-output
  515.  
  516. # Now the programs that generate those files.
  517. # $(CONFIG_H) is omitted from the deps of the gen*.o
  518. # because these programs don't really depend on anything 
  519. # about the target machine.  They do depend on config.h itself,
  520. # since that describes the host machine.
  521.  
  522. genconfig : genconfig.o rtl.o $(LIBDEPS)
  523.     $(CC) $(CFLAGS) $(LDFLAGS) -o genconfig genconfig.o rtl.o $(LIBS)
  524.  
  525. genconfig.o : genconfig.c $(RTL_H) config.h
  526.  
  527. genflags : genflags.o rtl.o $(LIBDEPS)
  528.     $(CC) $(CFLAGS) $(LDFLAGS) -o genflags genflags.o rtl.o $(LIBS)
  529.  
  530. genflags.o : genflags.c $(RTL_H) config.h
  531.  
  532. gencodes : gencodes.o rtl.o $(LIBDEPS)
  533.     $(CC) $(CFLAGS) $(LDFLAGS) -o gencodes gencodes.o rtl.o $(LIBS)
  534.  
  535. gencodes.o : gencodes.c $(RTL_H) config.h
  536.  
  537. genemit : genemit.o rtl.o $(LIBDEPS)
  538.     $(CC) $(CFLAGS) $(LDFLAGS) -o genemit genemit.o rtl.o $(LIBS)
  539.  
  540. genemit.o : genemit.c $(RTL_H) config.h
  541.  
  542. genrecog : genrecog.o rtl.o $(LIBDEPS)
  543.     $(CC) $(CFLAGS) $(LDFLAGS) -o genrecog genrecog.o rtl.o $(LIBS)
  544.  
  545. genrecog.o : genrecog.c $(RTL_H) config.h
  546.  
  547. genextract : genextract.o rtl.o $(LIBDEPS)
  548.     $(CC) $(CFLAGS) $(LDFLAGS) -o genextract genextract.o rtl.o $(LIBS)
  549.  
  550. genextract.o : genextract.c $(RTL_H) config.h
  551.  
  552. genpeep : genpeep.o rtl.o $(LIBDEPS)
  553.     $(CC) $(CFLAGS) $(LDFLAGS) -o genpeep genpeep.o rtl.o $(LIBS)
  554.  
  555. genpeep.o : genpeep.c $(RTL_H) config.h
  556.  
  557. genoutput : genoutput.o rtl.o $(LIBDEPS)
  558.     $(CC) $(CFLAGS) $(LDFLAGS) -o genoutput genoutput.o rtl.o $(LIBS)
  559.  
  560. genoutput.o : genoutput.c $(RTL_H) config.h
  561.  
  562. # Making the preprocessor
  563. cpp: cccp
  564.     -rm -f cpp
  565.     ln cccp cpp
  566. cccp: cccp.o cexp.o version.o $(LIBDEPS)
  567.     $(CC) $(CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
  568. cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
  569.     $(CC) $(CFLAGS) $(CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
  570. $(srcdir)/cexp.c: $(srcdir)/cexp.y
  571.     $(BISON) -o $(srcdir)/cexp.c $(srcdir)/cexp.y
  572. cccp.o: cccp.c $(CONFIG_H)
  573.     $(CC) $(CFLAGS) $(INCLUDES) \
  574.           -DGCC_INCLUDE_DIR=\"$(libdir)/gcc-include\" \
  575.           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
  576.       -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
  577.  
  578. $(srcdir)/cpp.info: $(srcdir)/cpp.texinfo
  579.     makeinfo `echo $(srcdir)/cpp.texinfo | sed 's,^\./,,'`
  580.  
  581. $(srcdir)/gplus.info: $(srcdir)/gplus.texinfo
  582.     makeinfo `echo $(srcdir)/gplus.texinfo | sed 's,^\./,,'`
  583.  
  584. $(srcdir)/gcc.info: $(srcdir)/gcc.texinfo
  585.     makeinfo `echo $(srcdir)/gcc.texinfo | sed 's,^\./,,'`
  586.  
  587. # gnulib is not deleted because deleting it would be inconvenient
  588. # for most uses of this target.
  589. clean:
  590.     -rm -f $(STAGESTUFF) $(STAGE_GCC)
  591. # Delete the temp files made in the course of building gnulib.
  592.     -rm -f tmpgnulib
  593.     for name in $(LIBFUNCS); do rm -f $${name}.c; done
  594.     -rm -f stamp-*.[ch] tmp-*
  595.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop *.dbr *.jump2
  596.     -rm -f core float.h hard-params
  597.  
  598. # Like clean but also delete the links made to configure gcc.
  599. # Also removes gnulib, since that is desirable if you are changing cpus.
  600. cleanconfig: clean
  601.     -rm -f tm.h aux-output.c config.h md config.status gnulib stamp-gnulib2
  602.  
  603. # Get rid of every file that's generated from some other file (except INSTALL).
  604. realclean: cleanconfig
  605.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  606. #    -rm -f cplus-parse.tab.c cplus-parse.output
  607.     -rm -f c-parse.tab.c c-parse.output c-parse.tab.output
  608.     -rm -f gnulib cexp.c TAGS 
  609.     -rm -f cpp.info* cpp.?? cpp.??s cpp.log cpp.toc cpp.*aux
  610.     -rm -f gcc.info* gcc.?? gcc.??s gcc.log gcc.toc gcc.*aux
  611.     -rm -f gplus.info* gplus.?? gplus.??s gplus.log gplus.toc gplus.*aux
  612.     -rm -f *.dvi
  613.  
  614. # Copy the files into directories where they will be run.
  615. install: all $(USER_H) float.h gvarargs.h gstdarg.h gcc.1
  616.     -mkdir $(libdir)
  617.     -if [ -f cc1 ] ; then $(INSTALL) cc1 $(libdir)/gcc-cc1 ; else true; fi
  618.     -if [ -f cc1plus ] ; then $(INSTALL) cc1plus $(libdir)/gcc-cc1plus ; else true; fi
  619.     $(INSTALL) gnulib $(libdir)/gcc-gnulib
  620.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then (cd $(libdir); $(RANLIB) gcc-gnulib) ; else true; fi
  621.     $(INSTALL) cpp $(libdir)/gcc-cpp
  622.     $(INSTALL) gcc $(bindir)
  623.     -mkdir $(libdir)/gcc-include
  624.     -chmod ugo+rx $(libdir)/gcc-include
  625.     for file in $(USER_H); do \
  626.          for eachfile in  $(srcdir)/$${file} ; do \
  627.         $(INSTALL) $(srcdir)/`basename $${eachfile}` $(libdir)/gcc-include/`basename $${eachfile}`; \
  628.          done ; done
  629.     $(INSTALL) float.h $(libdir)/gcc-include/float.h
  630.     $(INSTALL) $(srcdir)/gvarargs.h $(libdir)/gcc-include/varargs.h
  631.     $(INSTALL) $(srcdir)/gstdarg.h $(libdir)/gcc-include/stdarg.h
  632.     -chmod a-x $(libdir)/gcc-include/*.h
  633.     $(INSTALL) $(srcdir)/gcc.1 $(mandir)/gcc.$(manext)
  634.     -chmod a-x $(mandir)/gcc.$(manext)
  635.  
  636. # do make -f ../gcc/Makefile maketest DIR=../gcc
  637. # in the intended test directory to make it a suitable test directory.
  638. maketest:
  639.     ln -s $(DIR)/*.[chy] .
  640.     ln -s $(DIR)/config .
  641.     ln -s $(DIR)/*.def .
  642.     -rm -f =*
  643.     ln -s $(DIR)/.gdbinit .
  644.     -ln -s $(DIR)/bison.simple .
  645.     ln -s $(DIR)/config.gcc .
  646.     ln -s $(DIR)/move-if-change .
  647. # The then and else were swapped to avoid a problem on Ultrix.
  648.     -if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile . ; else false; fi
  649.     -rm tm.h aux-output.c config.h md
  650.     make clean
  651. # You must then run config.gcc to set up for compilation.
  652.  
  653. bootstrap: all force
  654.     $(MAKE) stage1
  655.     $(MAKE) CC="stage1/gcc -Bstage1/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  656.     $(MAKE) stage2
  657.     $(MAKE) CC="stage2/gcc -Bstage2/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  658.  
  659. bootstrap2: force
  660.     $(MAKE) CC="stage1/gcc -Bstage1/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  661.     $(MAKE) stage2
  662.     $(MAKE) CC="stage2/gcc -Bstage2/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  663.  
  664. bootstrap3: force
  665.     $(MAKE) CC="stage2/gcc -Bstage2/" CFLAGS="-O $(CFLAGS)" libdir=$(libdir)
  666.  
  667. # Copy the object files from a particular stage into a subdirectory.
  668. stage1: force
  669.     -mkdir stage1
  670.     -mv $(STAGESTUFF) $(STAGE_GCC) stage1
  671.     -rm -f stage1/gnulib
  672.     -ln gnulib stage1 || cp gnulib stage1
  673.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then $(RANLIB) stage1/gnulib; else true; fi
  674.  
  675. stage2: force
  676.     -mkdir stage2
  677.     -mv $(STAGESTUFF) $(STAGE_GCC) stage2
  678.     -rm -f stage2/gnulib
  679.     -ln gnulib stage2 || cp gnulib stage2
  680.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then $(RANLIB) stage2/gnulib; else true; fi
  681.  
  682. stage3: force
  683.     -mkdir stage3
  684.     -mv $(STAGESTUFF) $(STAGE_GCC) stage3
  685.     -rm -f stage3/gnulib
  686.     -ln gnulib stage3 || cp gnulib stage3
  687.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then $(RANLIB) stage3/gnulib; else true; fi
  688.  
  689. stage4: force
  690.     -mkdir stage4
  691.     -mv $(STAGESTUFF) $(STAGE_GCC) stage4
  692.     -rm -f stage4/gnulib
  693.     -ln gnulib stage4 || cp gnulib stage4
  694.     -if [ -f /usr/bin/ranlib -o -f /bin/ranlib ] ; then $(RANLIB) stage4/gnulib; else true; fi
  695.  
  696. TAGS: force
  697.     mkdir temp
  698.     -mv c-parse.tab.c cplus-parse.c cplus-parse.h cexp.c temp
  699.     etags *.y *.h *.c
  700.     mv temp/* .
  701.     rmdir temp
  702.  
  703. includes: force
  704.     export LIB; LIB=$(libdir)/gcc-include ./fixincludes
  705.  
  706. #In GNU Make, ignore whether `stage*' exists.
  707. .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
  708.  
  709. force:
  710.