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

  1. # Makefile for GNU C++ NATIVE COMPILER for the atariST/TT series hosted
  2. #  on a HPUX host (tested only on a HP Snake running hpux 8.x)
  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.hp-ux/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
  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
  56. HOSTCC=/bin/cc 
  57. HOSTALLOCA = /net/acae127/home/bammi/lib.hp-ux/alloca.o
  58. #MALLOC1 = /net/acae127/home/bammi/lib.hp-ux/malloc_new6.o
  59. MALLOC1 = 
  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. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  125.  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
  126.  rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
  127.  dbxout.o sdbout.o dwarfout.o xcoffout.o \
  128.  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
  129.  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
  130.  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
  131.  insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
  132.  insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
  133.  
  134. GCC_PASSES=gcc cc1 cpp
  135.  
  136. # Files to be copied away after each stage in building.
  137. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  138.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  139.  insn-attr.h insn-attrtab.c insn-opinit.c \
  140.  stamp-flags stamp-config stamp-codes \
  141.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  142.  stamp-attr stamp-attrtab stamp-opinit stamp-proto \
  143.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  144.  genattrtab genattr genopinit \
  145.  $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
  146.  cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
  147.  
  148. # Header files that are made available to programs compiled with gcc.
  149. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  150.  
  151. # If you want to recompile everything, just do rm *.o.
  152. # CONFIG_H = config.h tm.h
  153. CONFIG_H =
  154. RTL_H = rtl.h rtl.def machmode.h machmode.def
  155. TREE_H = tree.h real.h tree.def machmode.h machmode.def
  156. CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
  157.  
  158. ALL =  gcc-cc1plus.ttp
  159.  
  160. all : $(ALL)
  161.  
  162. gcc-cc1plus.ttp: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  163.     $(CC) $(CFLAGS) $(LDFLAGS) -o gcc-cc1plus.ttp $(CPLUS_OBJS) $(OBJS) $(LIBS)
  164. # C++ language specific files.
  165.  
  166. cp-parse.o : cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  167.     $(CC) -c $(CFLAGS) cp-parse.c
  168.  
  169. cp-parse.c cp-parse.h : cp-parse.y
  170.     @echo expect 29 shift/reduce conflicts and 14 reduce/reduce conflicts
  171.     $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
  172.     grep '^#define[     ]*YYEMPTY' cp-parse.c >>cp-parse.h
  173.  
  174. cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
  175.    cp-parse.h flags.h
  176. cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
  177.    cp-parse.h cp-input.c flags.h
  178. cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  179.   cp-lex.h cp-decl.h stack.h
  180. cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  181.   cp-lex.h cp-decl.h
  182. cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  183. cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  184. cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h \
  185.     cp-class.h flags.h
  186. cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h cp-class.h \
  187.     flags.h
  188. cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  189. cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  190. cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  191. cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  192. cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  193. cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
  194. cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  195. cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  196. cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
  197.   expr.h insn-codes.h
  198. cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  199. cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H)
  200. cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
  201.  
  202. # A file used by all variants of C.
  203.  
  204. c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  205.  
  206.  
  207. # Language-independent files.
  208. dumpvers: dumpvers.c
  209.  
  210. version.o: version.c
  211. obstack.o: obstack.c
  212.  
  213. tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
  214. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  215. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
  216. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
  217. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
  218.  insn-attr.h xcoffout.h
  219.  
  220. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  221.  
  222. print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
  223. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  224.  
  225. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h \
  226.    insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
  227. function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  228.    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
  229.    recog.h output.h
  230. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  231.    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
  232. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h function.h  \
  233.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
  234. calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
  235.    insn-flags.h
  236. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  237.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
  238. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
  239.    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
  240. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  241.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h
  242. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
  243.    insn-config.h reload.h gstab.h xcoffout.h
  244. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
  245.    insn-config.h reload.h
  246. dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
  247.    insn-config.h reload.h output.h
  248. xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
  249. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
  250.    regs.h insn-config.h insn-codes.h real.h expr.h
  251.  
  252. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
  253.    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
  254.  
  255. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
  256.    insn-config.h insn-flags.h insn-codes.h expr.h real.h
  257. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  258.  
  259. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
  260.    insn-config.h recog.h
  261. loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
  262.    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
  263. unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  264.    integrate.h regs.h flags.h expr.h loop.h
  265. flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
  266.    basic-block.h regs.h hard-reg-set.h output.h
  267. combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
  268.    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
  269.    basic-block.h recog.h real.h
  270. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  271.    basic-block.h regs.h insn-config.h recog.h 
  272. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
  273.    regs.h hard-reg-set.h insn-config.h recog.h output.h
  274. global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
  275.    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
  276.  
  277. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  278.    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
  279. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
  280.    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
  281.    basic-block.h recog.h output.h
  282. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  283.    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
  284. reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
  285.    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
  286.    flags.h output.h
  287. sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
  288.    flags.h insn-config.h insn-attr.h
  289. final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
  290.    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
  291.    hard-reg-set.h insn-codes.h gstab.h xcoffout.h
  292. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  293.    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
  294.    insn-flags.h insn-codes.h real.h
  295. reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
  296.    regs.h hard-reg-set.h flags.h insn-config.h
  297.    
  298. aux-output.o : aux-output.c $(CONFIG_H) \
  299.    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
  300.    insn-flags.h output.h insn-attr.h insn-codes.h
  301.  
  302. # Now the source files that are generated from the machine description.
  303.  
  304. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  305.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
  306.   insn-attr.h insn-attrtab.c
  307.  
  308. insn-config.h : md genconfig
  309.     ./genconfig md > tmp-insn-config.h
  310.     ./move-if-change tmp-insn-config.h insn-config.h
  311.  
  312. insn-flags.h : md genflags
  313.     ./genflags md > tmp-insn-flags.h
  314.     ./move-if-change tmp-insn-flags.h insn-flags.h
  315.  
  316. insn-codes.h : md gencodes
  317.     ./gencodes md > tmp-insn-codes.h
  318.     ./move-if-change tmp-insn-codes.h insn-codes.h
  319.  
  320. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h insn-config.h
  321.     $(CC) $(CFLAGS) -c insn-emit.c
  322.  
  323. insn-emit.c : md genemit
  324.     ./genemit md > tmp-insn-emit.c
  325.     ./move-if-change tmp-insn-emit.c insn-emit.c
  326.  
  327. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h
  328.     $(CC) $(CFLAGS) -c insn-recog.c
  329.  
  330. insn-recog.c : md genrecog
  331.     ./genrecog md > tmp-insn-recog.c
  332.     ./move-if-change tmp-insn-recog.c insn-recog.c
  333.  
  334. insn-extract.o : insn-extract.c $(RTL_H)
  335.     $(CC) $(CFLAGS) -c insn-extract.c
  336.  
  337. insn-extract.c : md genextract
  338.     ./genextract md > tmp-insn-extract.c
  339.     ./move-if-change tmp-insn-extract.c insn-extract.c
  340.  
  341. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h
  342.     $(CC) $(CFLAGS) -c insn-peep.c
  343.  
  344. insn-peep.c : md genpeep
  345.     ./genpeep md > tmp-insn-peep.c
  346.     ./move-if-change tmp-insn-peep.c insn-peep.c
  347.  
  348. 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
  349.     $(CC) $(CFLAGS) -c insn-output.c
  350.  
  351. insn-output.c : md genoutput
  352.     ./genoutput md > tmp-insn-output.c
  353.     ./move-if-change tmp-insn-output.c insn-output.c
  354.  
  355. insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
  356.      insn-attr.h insn-config.h
  357.     $(CC) $(CFLAGS) -c insn-attrtab.c
  358.  
  359. insn-attr.h: md genattr
  360.     ./genattr md > tmp-attr.h
  361.     ./move-if-change tmp-attr.h insn-attr.h
  362.  
  363. insn-attrtab.c: md genattrtab
  364.     ./genattrtab md > tmp-attrtab.c
  365.     ./move-if-change tmp-attrtab.c insn-attrtab.c
  366.  
  367.  
  368. # Now the programs that generate those files.
  369.  
  370. genconfig : genconfig.oo rtl.oo $(LIBDEPS1)
  371.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genconfig genconfig.oo rtl.oo $(LIBS1)
  372.  
  373. genconfig.oo : genconfig.c $(RTL_H)
  374.     $(HOSTCC) $(HOSTCFLAGS) -c genconfig.c -o genconfig.oo
  375.  
  376. genflags : genflags.oo rtl.oo $(LIBDEPS1)
  377.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genflags genflags.oo rtl.oo $(LIBS1)
  378.  
  379. genflags.oo : genflags.c $(RTL_H)
  380.     $(HOSTCC) $(HOSTCFLAGS) -c genflags.c -o genflags.oo
  381.  
  382. gencodes : gencodes.oo rtl.oo $(LIBDEPS1)
  383.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o gencodes gencodes.oo rtl.oo $(LIBS1)
  384.  
  385. gencodes.oo : gencodes.c $(RTL_H)
  386.     $(HOSTCC) $(HOSTCFLAGS) -c gencodes.c -o gencodes.oo
  387.  
  388. genemit : genemit.oo rtl.oo $(LIBDEPS1)
  389.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genemit genemit.oo rtl.oo $(LIBS1)
  390.  
  391. genemit.oo : genemit.c $(RTL_H)
  392.     $(HOSTCC) $(HOSTCFLAGS) -c genemit.c -o genemit.oo
  393.  
  394. genrecog : genrecog.oo rtl.oo $(LIBDEPS1)
  395.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genrecog genrecog.oo rtl.oo $(LIBS1)
  396.  
  397. genrecog.oo : genrecog.c $(RTL_H)
  398.     $(HOSTCC) $(HOSTCFLAGS) -c genrecog.c -o genrecog.oo
  399.  
  400. genextract : genextract.oo rtl.oo $(LIBDEPS1)
  401.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genextract genextract.oo rtl.oo $(LIBS1)
  402.  
  403. genextract.oo : genextract.c $(RTL_H)
  404.     $(HOSTCC) $(HOSTCFLAGS) -c genextract.c -o genextract.oo
  405.  
  406. genpeep : genpeep.oo rtl.oo $(LIBDEPS1)
  407.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genpeep genpeep.oo rtl.oo $(LIBS1)
  408.  
  409. genpeep.oo : genpeep.c $(RTL_H)
  410.     $(HOSTCC) $(HOSTCFLAGS) -c genpeep.c -o genpeep.oo
  411.  
  412. genoutput : genoutput.oo rtl.oo $(LIBDEPS1)
  413.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genoutput genoutput.oo rtl.oo $(LIBS1)
  414.  
  415. genoutput.oo : genoutput.c $(RTL_H)
  416.     $(HOSTCC) $(HOSTCFLAGS) -c genoutput.c -o genoutput.oo
  417.  
  418. genattr : genattr.oo rtl.oo $(LIBDEPS1)
  419.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genattr \
  420.      genattr.oo rtl.oo $(LIBS1)
  421.  
  422. genattr.oo : genattr.c $(RTL_H) config.h
  423.     $(HOSTCC) -c $(HOSTCFLAGS) genattr.c -o genattr.oo
  424.  
  425. genattrtab : genattrtab.oo rtl.oo rtlanal.oo $(LIBDEPS1)
  426.     $(HOSTCC) $(HOSTCFLAGS) $(HOSTLDFLAGS) -o genattrtab \
  427.      genattrtab.oo rtl.oo rtlanal.oo $(LIBS1)
  428.  
  429. genattrtab.oo : genattrtab.c $(RTL_H) config.h insn-config.h
  430.     $(HOSTCC) -c $(HOSTCFLAGS) genattrtab.c -o genattrtab.oo
  431.  
  432. rtl.oo : rtl.c $(CONFIG_H) $(RTL_H)
  433.     $(HOSTCC) $(HOSTCFLAGS) -c rtl.c -o rtl.oo
  434.  
  435. rtlanal.oo : rtlanal.c $(CONFIG_H) $(RTL_H)
  436.     $(HOSTCC) $(HOSTCFLAGS) -c rtlanal.c -o rtlanal.oo
  437.  
  438. obstack.oo : obstack.c
  439.     $(HOSTCC) $(HOSTCFLAGS) -c obstack.c -o obstack.oo
  440.  
  441. # gnulib is not deleted because deleting it would be inconvenient
  442. # for most uses of this target.
  443. clean:
  444.     -rm -f *.o *.oo $(STAGESTUFF)
  445.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  446.  
  447. # Get rid of every file that's generated from some other file (except INSTALL).
  448. realclean: clean
  449.     -rm -f $(ALL)
  450.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  451.     -rm -f errs gnulib TAGS 
  452.     -rm -f core report
  453.     -rm -f internals internals-* internals.?? internals.??s
  454.  
  455. # Copy the files into directories where they will be run.
  456. #install: all
  457. #    install cc1 $(libdir)/gcc-cc1
  458. #    install cpp $(libdir)/gcc-cpp
  459. #    install gcc $(bindir)
  460.  
  461. force:
  462.  
  463. #In GNU Make, ignore whether `stage*' exists.
  464. .PHONY: clean realclean
  465.