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

  1. # Makefile for GNU C++ CROSS 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. CROSSDIR = /net/acae127/home/bammi/atari/cross-gcc
  30. CROSSBIN = $(CROSSDIR)/bin
  31. CROSSLIB = $(CROSSDIR)/lib
  32. CROSSINC = $(CROSSDIR)/include
  33.  
  34. GCC_INCLUDE_DIR = $(CROSSINC)
  35. GPLUSPLUS_INCLUDE_DIR = $(CROSSDIR)/g++-inc
  36.  
  37. DFLAGS= -DCROSSDIR=\"$(CROSSDIR)\"
  38. CFLAGS =  $(DFLAGS) -O -g -DCROSSATARI=1 -Usun -I./config -I. # -O
  39. # LDFLAGS =
  40. # host's cc (give full path to gcc is hosts gcc is not before . in your PATH)
  41. CC = gcc
  42.  
  43. BISON = bison
  44. BISONFLAGS =
  45. AR = ar
  46. SHELL = /bin/sh
  47.  
  48. bindir = $(CROSSBIN)
  49. libdir = $(CROSSLIB)
  50.  
  51. # Change this to a null string if obstacks are installed in the
  52. # system library.
  53. OBSTACK=obstack.o
  54.  
  55. # Dependency on obstack, alloca, malloc or whatever library facilities
  56. # are not installed in the system libraries.
  57. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  58.  
  59. # How to link with both our special library facilities
  60. # and the system's installed libraries.
  61. LIBS = $(OBSTACK) $(ALLOCA) $(MALLOC) $(MALLOC1) $(CLIB)
  62.  
  63. # Language-specific object files for C++.
  64. CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
  65.    cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
  66.    cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
  67.    cp-class.o cp-init.o cp-method.o cp-except.o \
  68.    cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
  69.    $(CPLUS_INPUT) cp-spew.o c-common.o
  70.  
  71. # Language-independent object files.
  72. OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
  73.  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
  74.  rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
  75.  dbxout.o sdbout.o dwarfout.o xcoffout.o \
  76.  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
  77.  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
  78.  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
  79.  insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
  80.  insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
  81.  
  82. GCC_PASSES=gcc cc1 cpp
  83.  
  84. # Files to be copied away after each stage in building.
  85. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  86.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  87.  insn-attr.h insn-attrtab.c insn-opinit.c \
  88.  stamp-flags stamp-config stamp-codes \
  89.  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
  90.  stamp-attr stamp-attrtab stamp-opinit stamp-proto \
  91.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  92.  genattrtab genattr genopinit \
  93.  $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
  94.  cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
  95.  
  96. # Header files that are made available to programs compiled with gcc.
  97. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  98.  
  99. # If you want to recompile everything, just do rm *.o.
  100. # CONFIG_H = config.h tm.h
  101. CONFIG_H =
  102. RTL_H = rtl.h rtl.def machmode.h machmode.def
  103. TREE_H = tree.h real.h tree.def machmode.h machmode.def
  104. CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
  105.  
  106. ALL = cc1plus
  107.  
  108. all: $(ALL)
  109.  
  110. cc1plus: $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
  111.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
  112.  
  113. # C++ language specific files.
  114.  
  115. cp-parse.o : cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  116.     $(CC) -c $(CFLAGS) cp-parse.c
  117.  
  118. cp-parse.c cp-parse.h : cp-parse.y
  119.     @echo expect 29 shift/reduce conflicts and 14 reduce/reduce conflicts
  120.     $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
  121.     grep '^#define[     ]*YYEMPTY' cp-parse.c >>cp-parse.h
  122.  
  123. cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
  124.    cp-parse.h flags.h
  125. cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
  126.    cp-parse.h cp-input.c flags.h
  127. cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  128.   cp-lex.h cp-decl.h stack.h
  129. cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
  130.   cp-lex.h cp-decl.h
  131. cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  132. cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  133. cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h \
  134.     cp-class.h flags.h
  135. cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h cp-class.h \
  136.     flags.h
  137. cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  138. cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
  139. cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
  140. cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  141. cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  142. cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
  143. cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  144. cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
  145. cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
  146.   expr.h insn-codes.h
  147. cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
  148. cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H)
  149. cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
  150.  
  151. # A file used by all variants of C.
  152.  
  153. c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
  154.  
  155.  
  156. # Language-independent files.
  157. dumpvers: dumpvers.c
  158.  
  159. version.o: version.c
  160. obstack.o: obstack.c
  161.  
  162. tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
  163. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  164. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
  165. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
  166. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
  167.  insn-attr.h xcoffout.h
  168.  
  169. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  170.  
  171. print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
  172. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  173.  
  174. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h \
  175.    insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
  176. function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  177.    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
  178.    recog.h output.h
  179. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
  180.    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
  181. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h function.h  \
  182.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
  183. calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
  184.    insn-flags.h
  185. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  186.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
  187. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
  188.    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
  189. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  190.    insn-flags.h insn-config.h insn-codes.h expr.h recog.h
  191. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
  192.    insn-config.h reload.h gstab.h xcoffout.h
  193. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
  194.    insn-config.h reload.h
  195. dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
  196.    insn-config.h reload.h output.h
  197. xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
  198. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
  199.    regs.h insn-config.h insn-codes.h real.h expr.h
  200.  
  201. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
  202.    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
  203.  
  204. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
  205.    insn-config.h insn-flags.h insn-codes.h expr.h real.h
  206. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  207.  
  208. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
  209.    insn-config.h recog.h
  210. loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
  211.    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
  212. unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
  213.    integrate.h regs.h flags.h expr.h loop.h
  214. flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
  215.    basic-block.h regs.h hard-reg-set.h output.h
  216. combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
  217.    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
  218.    basic-block.h recog.h real.h
  219. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
  220.    basic-block.h regs.h insn-config.h recog.h 
  221. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
  222.    regs.h hard-reg-set.h insn-config.h recog.h output.h
  223. global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
  224.    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
  225.  
  226. reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
  227.    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
  228. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
  229.    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
  230.    basic-block.h recog.h output.h
  231. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  232.    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
  233. reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
  234.    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
  235.    flags.h output.h
  236. sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
  237.    flags.h insn-config.h insn-attr.h
  238. final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
  239.    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
  240.    hard-reg-set.h insn-codes.h gstab.h xcoffout.h
  241. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  242.    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
  243.    insn-flags.h insn-codes.h real.h
  244. reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
  245.    regs.h hard-reg-set.h flags.h insn-config.h
  246.    
  247. aux-output.o : aux-output.c $(CONFIG_H) \
  248.    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
  249.    insn-flags.h output.h insn-attr.h insn-codes.h
  250.  
  251. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  252.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
  253.   insn-attr.h insn-attrtab.c
  254.  
  255. insn-config.h : md genconfig
  256.     ./genconfig md > tmp-insn-config.h
  257.     ./move-if-change tmp-insn-config.h insn-config.h
  258.  
  259. insn-flags.h : md genflags
  260.     ./genflags md > tmp-insn-flags.h
  261.     ./move-if-change tmp-insn-flags.h insn-flags.h
  262.  
  263. insn-codes.h : md gencodes
  264.     ./gencodes md > tmp-insn-codes.h
  265.     ./move-if-change tmp-insn-codes.h insn-codes.h
  266.  
  267. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h insn-config.h
  268.     $(CC) $(CFLAGS) -c insn-emit.c
  269.  
  270. insn-emit.c : md genemit
  271.     ./genemit md > tmp-insn-emit.c
  272.     ./move-if-change tmp-insn-emit.c insn-emit.c
  273.  
  274. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h
  275.     $(CC) $(CFLAGS) -c insn-recog.c
  276.  
  277. insn-recog.c : md genrecog
  278.     ./genrecog md > tmp-insn-recog.c
  279.     ./move-if-change tmp-insn-recog.c insn-recog.c
  280.  
  281. insn-extract.o : insn-extract.c $(RTL_H)
  282.     $(CC) $(CFLAGS) -c insn-extract.c
  283.  
  284. insn-extract.c : md genextract
  285.     ./genextract md > tmp-insn-extract.c
  286.     ./move-if-change tmp-insn-extract.c insn-extract.c
  287.  
  288. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h
  289.     $(CC) $(CFLAGS) -c insn-peep.c
  290.  
  291. insn-peep.c : md genpeep
  292.     ./genpeep md > tmp-insn-peep.c
  293.     ./move-if-change tmp-insn-peep.c insn-peep.c
  294.  
  295. 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
  296.     $(CC) $(CFLAGS) -c insn-output.c
  297.  
  298. insn-output.c : md genoutput
  299.     ./genoutput md > tmp-insn-output.c
  300.     ./move-if-change tmp-insn-output.c insn-output.c
  301.  
  302. insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
  303.      insn-attr.h insn-config.h
  304.     $(CC) $(CFLAGS) -c insn-attrtab.c
  305.  
  306. insn-attr.h: md genattr
  307.     ./genattr md > tmp-attr.h
  308.     ./move-if-change tmp-attr.h insn-attr.h
  309.  
  310. insn-attrtab.c: md genattrtab
  311.     ./genattrtab md > tmp-attrtab.c
  312.     ./move-if-change tmp-attrtab.c insn-attrtab.c
  313.  
  314. # Now the programs that generate those files.
  315.  
  316. genconfig : genconfig.o rtl.o $(LIBDEPS)
  317.     $(CC) $(CFLAGS) $(LDFLAGS) -o genconfig genconfig.o rtl.o $(LIBS)
  318.  
  319. genconfig.o : genconfig.c $(RTL_H)
  320.     $(CC) $(CFLAGS) -c genconfig.c
  321.  
  322. genflags : genflags.o rtl.o $(LIBDEPS)
  323.     $(CC) $(CFLAGS) $(LDFLAGS) -o genflags genflags.o rtl.o $(LIBS)
  324.  
  325. genflags.o : genflags.c $(RTL_H)
  326.     $(CC) $(CFLAGS) -c genflags.c
  327.  
  328. gencodes : gencodes.o rtl.o $(LIBDEPS)
  329.     $(CC) $(CFLAGS) $(LDFLAGS) -o gencodes gencodes.o rtl.o $(LIBS)
  330.  
  331. gencodes.o : gencodes.c $(RTL_H)
  332.     $(CC) $(CFLAGS) -c gencodes.c
  333.  
  334. genemit : genemit.o rtl.o $(LIBDEPS)
  335.     $(CC) $(CFLAGS) $(LDFLAGS) -o genemit genemit.o rtl.o $(LIBS)
  336.  
  337. genemit.o : genemit.c $(RTL_H)
  338.     $(CC) $(CFLAGS) -c genemit.c
  339.  
  340. genrecog : genrecog.o rtl.o $(LIBDEPS)
  341.     $(CC) $(CFLAGS) $(LDFLAGS) -o genrecog genrecog.o rtl.o $(LIBS)
  342.  
  343. genrecog.o : genrecog.c $(RTL_H)
  344.     $(CC) $(CFLAGS) -c genrecog.c
  345.  
  346. genextract : genextract.o rtl.o $(LIBDEPS)
  347.     $(CC) $(CFLAGS) $(LDFLAGS) -o genextract genextract.o rtl.o $(LIBS)
  348.  
  349. genextract.o : genextract.c $(RTL_H)
  350.     $(CC) $(CFLAGS) -c genextract.c
  351.  
  352. genpeep : genpeep.o rtl.o $(LIBDEPS)
  353.     $(CC) $(CFLAGS) $(LDFLAGS) -o genpeep genpeep.o rtl.o $(LIBS)
  354.  
  355. genpeep.o : genpeep.c $(RTL_H)
  356.     $(CC) $(CFLAGS) -c genpeep.c
  357.  
  358. genoutput : genoutput.o rtl.o $(LIBDEPS)
  359.     $(CC) $(CFLAGS) $(LDFLAGS) -o genoutput genoutput.o rtl.o $(LIBS)
  360.  
  361. genoutput.o : genoutput.c $(RTL_H)
  362.     $(CC) $(CFLAGS) -c genoutput.c
  363.  
  364. genattr : genattr.o rtl.o $(LIBDEPS)
  365.     $(CC) $(CFLAGS) $(LDFLAGS) -o genattr \
  366.      genattr.o rtl.o $(LIBS)
  367.  
  368. genattr.o : genattr.c $(RTL_H) config.h
  369.     $(CC) -c $(CFLAGS) genattr.c
  370.  
  371. genattrtab : genattrtab.o rtl.o rtlanal.o $(LIBDEPS)
  372.     $(CC) $(CFLAGS) $(LDFLAGS) -o genattrtab \
  373.      genattrtab.o rtl.o rtlanal.o $(LIBS)
  374.  
  375. genattrtab.o : genattrtab.c $(RTL_H) config.h insn-config.h
  376.     $(CC) -c $(CFLAGS) genattrtab.c
  377.  
  378. # gnulib is not deleted because deleting it would be inconvenient
  379. # for most uses of this target.
  380. clean:
  381.     -rm -f *.o *.oo $(STAGESTUFF)
  382.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  383.     -rm -f core
  384.  
  385. # Get rid of every file that's generated from some other file (except INSTALL).
  386. realclean: clean
  387.     -rm -f $(ALL)
  388.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  389.     -rm -f errs gnulib TAGS 
  390.     -rm -f core report
  391.     -rm -f internals internals-* internals.?? internals.??s
  392.  
  393. # Copy the files into directories where they will be run.
  394. install: all
  395.     cp cc1plus $(libdir)/gcc-cc1plus
  396.  
  397. force:
  398. #In GNU Make, ignore whether `stage*' exists.
  399. .PHONY: clean realclean
  400.