home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / update30.lzh / UPDATE30 / GMAKEFIL.ST < prev    next >
Text File  |  1993-07-30  |  18KB  |  466 lines

  1. # Makefile for GNU C++ NATIVE COMPILER for the atariST/TT series hosted
  2. #  on a Sparc host (tested only on SUnOS 4.0.3)
  3. #  NOTE: requires alloca.c from the emacs dist.
  4. #
  5.  
  6. # Makefile for GNU C compiler.
  7. #   Copyright (C) 1987 Free Software Foundation, Inc.
  8.  
  9. #This file is part of GNU CC.
  10.  
  11. #GNU CC is distributed in the hope that it will be useful,
  12. #but WITHOUT ANY WARRANTY.  No author or distributor
  13. #accepts responsibility to anyone for the consequences of using it
  14. #or for whether it serves any particular purpose or works at all,
  15. #unless he says so in writing.  Refer to the GNU CC General Public
  16. #License for full details.
  17.  
  18. #Everyone is granted permission to copy, modify and redistribute
  19. #GNU CC, but only under the conditions described in the
  20. #GNU CC General Public License.   A copy of this license is
  21. #supposed to have been given to you along with GNU CC so you
  22. #can know your rights and responsibilities.  It should be in a
  23. #file named COPYING.  Among other things, the copyright notice
  24. #and this notice must be preserved on all copies.
  25.  
  26. .NOEXPORT: # This tells GNU Make version 3
  27.        # not to put all the variables in the environment.
  28.  
  29.  
  30. CROSSDIR = /net/acae127/home/bammi/atari/cross-gcc
  31. CROSSBIN = $(CROSSDIR)/bin
  32. CROSSLIB = $(CROSSDIR)/lib
  33. CROSSINC = $(CROSSDIR)/include
  34.  
  35. # BASEREL not yet supported. Howard has sent some diffs for baserel
  36. #         but they only work for gcc-cc1 and not gcc-cc1plus. since
  37. #      gcc-cc1plus shares most .o files with gcc-cc1, until that
  38. #         is resolved, baserel is unsupported.
  39. # BASEREL = -mbaserel -mpcrel
  40.  
  41. # ARCHFLAGS    if unset, the default is -m68000 that will work on all STs
  42. #            for the TT set -m68020 -m68881 for the falcon you probably
  43. #        only want -m68020 unless you have the optional co-proc.
  44. #
  45. #        note: the above applies only when you have not changed the
  46. #        TARGET_DEFAULT in tm-atari.h yourself. if you have changed
  47. #        the default then adjust as appro.
  48. # ARCHFLAGS = -m68020 -m68881
  49.  
  50. CC = $(CROSSBIN)/cgcc -pipe
  51. DFLAGS = -DCROSSDIR=\"\"
  52. CFLAGS = $(ARCHFLAGS) $(BASEREL) $(DFLAGS) -O2 -fomit-frame-pointer -I$(CROSSINC) -I./config -I. -Datarist=1
  53. LDFLAGS =  $(ARCHFLAGS) $(BASEREL)
  54.  
  55. # hosts cc (give full path to gcc is hosts gcc is not before . in your PATH)
  56. HOSTCC=gcc
  57. HOSTCFLAGS = $(DFLAGS) -O -I./config -I.
  58. # HOSTLDFLAGS =
  59. HOSTALLOCA = 
  60.  
  61. # OLDCC should not be the GNU C compiler.
  62. OLDCC = cc
  63. BISON = bison
  64. BISONFLAGS=
  65. AR = ar
  66. SHELL = /bin/sh
  67.  
  68. bindir = 
  69. libdir = 
  70.  
  71. # These are what you would need on HPUX:
  72. # CFLAGS = -Wc,-Ns2000 -Wc,-Ne700
  73. # -g is desirable in CFLAGS, but a compiler bug in HPUX version 5
  74. # bites whenever tree.def, rtl.def or machmode.def is included
  75. # (ie., on every source file).
  76. # CCLIBFLAGS = -Wc,-Ns2000 -Wc,-Ne700
  77. # For CCLIBFLAGS you might want to specify the switch that
  78. # forces only 68000 instructions to be used.
  79.  
  80. # If you are making gcc for the first time, and if you are compiling it with
  81. # a non-gcc compiler, and if your system doesn't have a working alloca() in any
  82. # of the standard libraries (as is true for HP/UX or Genix),
  83. # then get alloca.c from GNU Emacs and un-comment the following line:
  84. # ALLOCA = alloca.o
  85.  
  86. # If your system has alloca() in /lib/libPW.a, un-comment the following line:
  87. # CLIB= -lPW
  88.   
  89. # If your system's malloc() routine fails for any reason (as it does on
  90. # certain versions of Genix), try getting the files
  91. # malloc.c and getpagesize.h from GNU Emacs and un-comment the following line:
  92. # MALLOC = malloc.o
  93.  
  94. # If you are running GCC on an Apollo, you will need this:
  95. # CFLAGS = -g -O -M 3000 -U__STDC__ -DSHORT_ENUM_BUG
  96.  
  97. # Change this to a null string if obstacks are installed in the
  98. # system library.
  99. OBSTACK=obstack.o
  100. OBSTACK1=obstack.oo
  101.  
  102. # Dependency on obstack, alloca, malloc or whatever library facilities
  103. # are not installed in the system libraries.
  104. LIBDEPS= $(OBSTACK)
  105. LIBDEPS1= $(OBSTACK1) $(HOSTALLOCA) $(MALLOC)
  106.  
  107. # How to link with both our special library facilities
  108. # and the system's installed libraries.
  109. LIBS = $(OBSTACK)
  110. LIBS1 = $(OBSTACK1) $(HOSTALLOCA) $(MALLOC) $(MALLOC1) $(CLIB)
  111.  
  112. DIR = ../gcc
  113.  
  114. # Object files of CC1.
  115.  
  116. # Language-specific object files for C++.
  117. CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
  118.    cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
  119.    cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
  120.    cp-class.o cp-init.o cp-method.o cp-except.o \
  121.    cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
  122.    $(CPLUS_INPUT) cp-spew.o c-common.o
  123.  
  124. # Language-independent object files.
  125. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  126.  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
  127.  rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
  128.  dbxout.o sdbout.o dwarfout.o xcoffout.o \
  129.  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
  130.  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
  131.  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
  132.  insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
  133.  insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
  134.  
  135. GCC_PASSES=gcc cc1 cpp
  136.  
  137. # Files to be copied away after each stage in building.
  138. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  139.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  140.  insn-attr.h insn-attrtab.c insn-opinit.c \
  141.  stamp-flags stamp-config stamp-codes \
  142.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  143.  stamp-attr stamp-attrtab stamp-opinit stamp-proto \
  144.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  145.  genattrtab genattr genopinit \
  146.  $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
  147.  cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
  148.  
  149. # Header files that are made available to programs compiled with gcc.
  150. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  151.  
  152. # If you want to recompile everything, just do rm *.o.
  153. # CONFIG_H = config.h tm.h
  154. CONFIG_H =
  155. RTL_H = rtl.h rtl.def machmode.h machmode.def
  156. TREE_H = tree.h real.h tree.def machmode.h machmode.def
  157. CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
  158.  
  159. ALL =  gcc-cc1plus.ttp
  160.  
  161. all : $(ALL)
  162.  
  163. gcc-cc1plus.ttp: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  164.     $(CC) $(CFLAGS) $(LDFLAGS) -o gcc-cc1plus.ttp $(CPLUS_OBJS) $(LIBS) $(OBJS) 
  165. # C++ language specific files.
  166.  
  167. cp-parse.o : cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  168.     $(CC) -c $(CFLAGS) cp-parse.c
  169.  
  170. cp-parse.c cp-parse.h : cp-parse.y
  171.     @echo expect 29 shift/reduce conflicts and 14 reduce/reduce conflicts
  172.     $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
  173.     grep '^#define[     ]*YYEMPTY' cp-parse.c >>cp-parse.h
  174.  
  175. cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
  176.    cp-parse.h flags.h
  177. cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
  178.    cp-parse.h cp-input.c flags.h
  179. cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  180.   cp-lex.h cp-decl.h stack.h
  181. cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  182.   cp-lex.h cp-decl.h
  183. cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  184. cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  185. cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h \
  186.     cp-class.h flags.h
  187. cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h cp-class.h \
  188.     flags.h
  189. cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  190. cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  191. cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  192. cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  193. cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  194. cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
  195. cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  196. cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  197. cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
  198.   expr.h insn-codes.h
  199. cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  200. cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H)
  201. cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
  202.  
  203. # A file used by all variants of C.
  204.  
  205. c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  206.  
  207.  
  208. # Language-independent files.
  209. dumpvers: dumpvers.c
  210.  
  211. version.o: version.c
  212. obstack.o: obstack.c
  213.  
  214. tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
  215. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  216. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
  217. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
  218. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
  219.  insn-attr.h xcoffout.h
  220.  
  221. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  222.  
  223. print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
  224. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  225.  
  226. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h \
  227.    insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
  228. function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  229.    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
  230.    recog.h output.h
  231. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  232.    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
  233. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h function.h  \
  234.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
  235. calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
  236.    insn-flags.h
  237. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  238.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
  239. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
  240.    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
  241. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  242.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h
  243. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
  244.    insn-config.h reload.h gstab.h xcoffout.h
  245. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
  246.    insn-config.h reload.h
  247. dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
  248.    insn-config.h reload.h output.h
  249. xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
  250. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
  251.    regs.h insn-config.h insn-codes.h real.h expr.h
  252.  
  253. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
  254.    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
  255.  
  256. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
  257.    insn-config.h insn-flags.h insn-codes.h expr.h real.h
  258. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  259.  
  260. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
  261.    insn-config.h recog.h
  262. loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
  263.    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
  264. unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  265.    integrate.h regs.h flags.h expr.h loop.h
  266. flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
  267.    basic-block.h regs.h hard-reg-set.h output.h
  268. combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
  269.    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
  270.    basic-block.h recog.h real.h
  271. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  272.    basic-block.h regs.h insn-config.h recog.h 
  273. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
  274.    regs.h hard-reg-set.h insn-config.h recog.h output.h
  275. global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
  276.    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
  277.  
  278. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  279.    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
  280. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
  281.    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
  282.    basic-block.h recog.h output.h
  283. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  284.    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
  285. reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
  286.    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
  287.    flags.h output.h
  288. sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
  289.    flags.h insn-config.h insn-attr.h
  290. final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
  291.    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
  292.    hard-reg-set.h insn-codes.h gstab.h xcoffout.h
  293. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  294.    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
  295.    insn-flags.h insn-codes.h real.h
  296. reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
  297.    regs.h hard-reg-set.h flags.h insn-config.h
  298.    
  299. aux-output.o : aux-output.c $(CONFIG_H) \
  300.    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
  301.    insn-flags.h output.h insn-attr.h insn-codes.h
  302.  
  303. # Now the source files that are generated from the machine description.
  304.  
  305. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  306.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
  307.   insn-attr.h insn-attrtab.c
  308.  
  309. insn-config.h : md genconfig
  310.     ./genconfig md > tmp-insn-config.h
  311.     ./move-if-change tmp-insn-config.h insn-config.h
  312.  
  313. insn-flags.h : md genflags
  314.     ./genflags md > tmp-insn-flags.h
  315.     ./move-if-change tmp-insn-flags.h insn-flags.h
  316.  
  317. insn-codes.h : md gencodes
  318.     ./gencodes md > tmp-insn-codes.h
  319.     ./move-if-change tmp-insn-codes.h insn-codes.h
  320.  
  321. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h insn-config.h
  322.     $(CC) $(CFLAGS) -c insn-emit.c
  323.  
  324. insn-emit.c : md genemit
  325.     ./genemit md > tmp-insn-emit.c
  326.     ./move-if-change tmp-insn-emit.c insn-emit.c
  327.  
  328. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h
  329.     $(CC) $(CFLAGS) -c insn-recog.c
  330.  
  331. insn-recog.c : md genrecog
  332.     ./genrecog md > tmp-insn-recog.c
  333.     ./move-if-change tmp-insn-recog.c insn-recog.c
  334.  
  335. insn-extract.o : insn-extract.c $(RTL_H)
  336.     $(CC) $(CFLAGS) -c insn-extract.c
  337.  
  338. insn-extract.c : md genextract
  339.     ./genextract md > tmp-insn-extract.c
  340.     ./move-if-change tmp-insn-extract.c insn-extract.c
  341.  
  342. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h
  343.     $(CC) $(CFLAGS) -c insn-peep.c
  344.  
  345. insn-peep.c : md genpeep
  346.     ./genpeep md > tmp-insn-peep.c
  347.     ./move-if-change tmp-insn-peep.c insn-peep.c
  348.  
  349. insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h insn-config.h insn-flags.h conditions.h output.h aux-output.c
  350.     $(CC) $(CFLAGS) -c insn-output.c
  351.  
  352. insn-output.c : md genoutput
  353.     ./genoutput md > tmp-insn-output.c
  354.     ./move-if-change tmp-insn-output.c insn-output.c
  355.  
  356. insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
  357.      insn-attr.h insn-config.h
  358.     $(CC) $(CFLAGS) -c insn-attrtab.c
  359.  
  360. insn-attr.h: md genattr
  361.     ./genattr md > tmp-attr.h
  362.     ./move-if-change tmp-attr.h insn-attr.h
  363.  
  364. insn-attrtab.c: md genattrtab
  365.     ./genattrtab md > tmp-attrtab.c
  366.     ./move-if-change tmp-attrtab.c insn-attrtab.c
  367.  
  368.  
  369. # Now the programs that generate those files.
  370.  
  371. genconfig : genconfig.oo rtl.oo $(LIBDEPS1)
  372.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genconfig genconfig.oo rtl.oo $(LIBS1)
  373.  
  374. genconfig.oo : genconfig.c $(RTL_H)
  375.     $(HOSTCC) $(HOSTCFLAGS) -c genconfig.c -o genconfig.oo
  376.  
  377. genflags : genflags.oo rtl.oo $(LIBDEPS1)
  378.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genflags genflags.oo rtl.oo $(LIBS1)
  379.  
  380. genflags.oo : genflags.c $(RTL_H)
  381.     $(HOSTCC) $(HOSTCFLAGS) -c genflags.c -o genflags.oo
  382.  
  383. gencodes : gencodes.oo rtl.oo $(LIBDEPS1)
  384.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o gencodes gencodes.oo rtl.oo $(LIBS1)
  385.  
  386. gencodes.oo : gencodes.c $(RTL_H)
  387.     $(HOSTCC) $(HOSTCFLAGS) -c gencodes.c -o gencodes.oo
  388.  
  389. genemit : genemit.oo rtl.oo $(LIBDEPS1)
  390.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genemit genemit.oo rtl.oo $(LIBS1)
  391.  
  392. genemit.oo : genemit.c $(RTL_H)
  393.     $(HOSTCC) $(HOSTCFLAGS) -c genemit.c -o genemit.oo
  394.  
  395. genrecog : genrecog.oo rtl.oo $(LIBDEPS1)
  396.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genrecog genrecog.oo rtl.oo $(LIBS1)
  397.  
  398. genrecog.oo : genrecog.c $(RTL_H)
  399.     $(HOSTCC) $(HOSTCFLAGS) -c genrecog.c -o genrecog.oo
  400.  
  401. genextract : genextract.oo rtl.oo $(LIBDEPS1)
  402.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genextract genextract.oo rtl.oo $(LIBS1)
  403.  
  404. genextract.oo : genextract.c $(RTL_H)
  405.     $(HOSTCC) $(HOSTCFLAGS) -c genextract.c -o genextract.oo
  406.  
  407. genpeep : genpeep.oo rtl.oo $(LIBDEPS1)
  408.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genpeep genpeep.oo rtl.oo $(LIBS1)
  409.  
  410. genpeep.oo : genpeep.c $(RTL_H)
  411.     $(HOSTCC) $(HOSTCFLAGS) -c genpeep.c -o genpeep.oo
  412.  
  413. genoutput : genoutput.oo rtl.oo $(LIBDEPS1)
  414.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genoutput genoutput.oo rtl.oo $(LIBS1)
  415.  
  416. genoutput.oo : genoutput.c $(RTL_H)
  417.     $(HOSTCC) $(HOSTCFLAGS) -c genoutput.c -o genoutput.oo
  418.  
  419. genattr : genattr.oo rtl.oo $(LIBDEPS1)
  420.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genattr \
  421.      genattr.oo rtl.oo $(LIBS1)
  422.  
  423. genattr.oo : genattr.c $(RTL_H) config.h
  424.     $(HOSTCC) -c $(HOSTCFLAGS) genattr.c -o genattr.oo
  425.  
  426. genattrtab : genattrtab.oo rtl.oo rtlanal.oo $(LIBDEPS1)
  427.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genattrtab \
  428.      genattrtab.oo rtl.oo rtlanal.oo $(LIBS1)
  429.  
  430. genattrtab.oo : genattrtab.c $(RTL_H) config.h insn-config.h
  431.     $(HOSTCC) -c $(HOSTCFLAGS) genattrtab.c -o genattrtab.oo
  432.  
  433. rtl.oo : rtl.c $(CONFIG_H) $(RTL_H)
  434.     $(HOSTCC) $(HOSTCFLAGS) -c rtl.c -o rtl.oo
  435.  
  436. rtlanal.oo : rtlanal.c $(CONFIG_H) $(RTL_H)
  437.     $(HOSTCC) $(HOSTCFLAGS) -c rtlanal.c -o rtlanal.oo
  438.  
  439. obstack.oo : obstack.c
  440.     $(HOSTCC) $(HOSTCFLAGS) -c obstack.c -o obstack.oo
  441.  
  442. # gnulib is not deleted because deleting it would be inconvenient
  443. # for most uses of this target.
  444. clean:
  445.     -rm -f *.o *.oo $(STAGESTUFF)
  446.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  447.  
  448. # Get rid of every file that's generated from some other file (except INSTALL).
  449. realclean: clean
  450.     -rm -f $(ALL)
  451.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  452.     -rm -f errs gnulib TAGS 
  453.     -rm -f core report
  454.     -rm -f internals internals-* internals.?? internals.??s
  455.  
  456. # Copy the files into directories where they will be run.
  457. #install: all
  458. #    install cc1 $(libdir)/gcc-cc1
  459. #    install cpp $(libdir)/gcc-cpp
  460. #    install gcc $(bindir)
  461.  
  462. force:
  463.  
  464. #In GNU Make, ignore whether `stage*' exists.
  465. .PHONY: clean realclean
  466.