home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / zip / gnu / gccsrc3.lzh / GCCSRC3 / MAKEFILE.CMI < prev    next >
Text File  |  1993-07-23  |  12KB  |  331 lines

  1. # Makefile for GNU C compiler.
  2. #   Copyright (C) 1987 Free Software Foundation, Inc.
  3.  
  4. #This file is part of GNU CC.
  5.  
  6. #GNU CC is distributed in the hope that it will be useful,
  7. #but WITHOUT ANY WARRANTY.  No author or distributor
  8. #accepts responsibility to anyone for the consequences of using it
  9. #or for whether it serves any particular purpose or works at all,
  10. #unless he says so in writing.  Refer to the GNU CC General Public
  11. #License for full details.
  12.  
  13. #Everyone is granted permission to copy, modify and redistribute
  14. #GNU CC, but only under the conditions described in the
  15. #GNU CC General Public License.   A copy of this license is
  16. #supposed to have been given to you along with GNU CC so you
  17. #can know your rights and responsibilities.  It should be in a
  18. #file named COPYING.  Among other things, the copyright notice
  19. #and this notice must be preserved on all copies.
  20.  
  21.  
  22. CFLAGS = -O -Datariminix=1 -D__NO_PROTO__ -I./config -I.
  23. SUNCFLAGS = -O -g -I./config -I.
  24. CC = /dsrg/bammi/cross-minix/bin/mgcc
  25. # hosts gcc
  26. SUNCC=/usr/local/bin/gcc
  27.  
  28. # OLDCC should not be the GNU C compiler.
  29. OLDCC = cc
  30. BISON = bison
  31. AR = ar
  32. SHELL = /bin/sh
  33.  
  34. bindir = 
  35. libdir = 
  36.  
  37. # These are what you would need on HPUX:
  38. # CFLAGS = -Wc,-Ns2000 -Wc,-Ne700
  39. # -g is desirable in CFLAGS, but a compiler bug in HPUX version 5
  40. # bites whenever tree.def, rtl.def or machmode.def is included
  41. # (ie., on every source file).
  42. # CCLIBFLAGS = -Wc,-Ns2000 -Wc,-Ne700
  43. # For CCLIBFLAGS you might want to specify the switch that
  44. # forces only 68000 instructions to be used.
  45.  
  46. # If you are making gcc for the first time, and if you are compiling it with
  47. # a non-gcc compiler, and if your system doesn't have a working alloca() in any
  48. # of the standard libraries (as is true for HP/UX or Genix),
  49. # then get alloca.c from GNU Emacs and un-comment the following line:
  50. # ALLOCA = alloca.o
  51.  
  52. # If your system has alloca() in /lib/libPW.a, un-comment the following line:
  53. # CLIB= -lPW
  54.   
  55. # If your system's malloc() routine fails for any reason (as it does on
  56. # certain versions of Genix), try getting the files
  57. # malloc.c and getpagesize.h from GNU Emacs and un-comment the following line:
  58. # MALLOC = malloc.o
  59.  
  60. # If you are running GCC on an Apollo, you will need this:
  61. # CFLAGS = -g -O -M 3000 -U__STDC__ -DSHORT_ENUM_BUG
  62.  
  63. # Change this to a null string if obstacks are installed in the
  64. # system library.
  65. OBSTACK=obstack.o
  66. OBSTACK1=obstack.oo
  67.  
  68. # Dependency on obstack, alloca, malloc or whatever library facilities
  69. # are not installed in the system libraries.
  70. LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
  71. LIBDEPS1= $(OBSTACK1) $(ALLOCA) $(MALLOC)
  72.  
  73. # How to link with both our special library facilities
  74. # and the system's installed libraries.
  75. LIBS = $(OBSTACK) $(ALLOCA) $(MALLOC) $(CLIB)
  76. LIBS1 = $(OBSTACK1) $(ALLOCA) $(MALLOC) $(CLIB)
  77.  
  78. DIR = ../gcc
  79.  
  80. # Object files of CC1.
  81. OBJS = toplev.o version.o c-parse.tab.o tree.o print-tree.o \
  82.  c-decl.o c-typeck.o c-convert.o stor-layout.o fold-const.o \
  83.  rtl.o rtlanal.o expr.o stmt.o expmed.o explow.o optabs.o varasm.o \
  84.  symout.o dbxout.o sdbout.o emit-rtl.o insn-emit.o \
  85.  integrate.o jump.o cse.o loop.o flow.o stupid.o combine.o \
  86.  regclass.o local-alloc.o global-alloc.o reload.o reload1.o caller-save.o \
  87.  insn-peep.o final.o recog.o insn-recog.o insn-extract.o insn-output.o
  88.  
  89. # Files to be copied away after each stage in building.
  90. STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
  91.  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
  92.  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
  93.  cc1 cpp cccp # cc1plus
  94.  
  95. # Header files that are made available to programs compiled with gcc.
  96. USER_H = stddef.h stdarg.h assert.h va-*.h limits.h
  97.  
  98. # If you want to recompile everything, just do rm *.o.
  99. # CONFIG_H = config.h tm.h
  100. CONFIG_H =
  101. RTL_H = rtl.h rtl.def machmode.def
  102. TREE_H = tree.h tree.def machmode.def
  103.  
  104. ALL =  gcc cc1 cpp
  105.  
  106. all: $(ALL)
  107.  
  108. compilations: ${OBJS}
  109.  
  110. gcc: gcc.o version.o $(LIBDEPS)
  111.     $(CC) $(CFLAGS) $(LDFLAGS) -o gccnew gcc.o version.o $(LIBS) -s
  112. # Go via `gccnew' to avoid `file busy' if $(CC) is `gcc'.
  113.     mv gccnew gcc
  114.  
  115. gcc.o: gcc.c $(CONFIG_H)
  116.     $(CC) $(CFLAGS) -c gcc.c
  117.  
  118. cc1: $(OBJS) $(LIBDEPS)
  119.     $(CC) $(CFLAGS) $(LDFLAGS) -o cc1 $(OBJS) $(LIBS) -s
  120.  
  121. # C-language specific files.
  122.  
  123. c-parse.tab.o : c-parse.tab.c $(CONFIG_H) $(TREE_H) c-parse.h c-tree.h
  124. c-parse.tab.c : c-parse.y
  125.     $(BISON) -v c-parse.y
  126.  
  127. c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-parse.h flags.h
  128. c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
  129. c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H)
  130.  
  131. # Language-independent files.
  132.  
  133. tree.o : tree.c $(CONFIG_H) $(TREE_H)
  134. print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
  135. stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H)
  136. fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H)
  137. toplev.o : toplev.c $(CONFIG_H) $(TREE_H) flags.h
  138.  
  139. rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
  140. rtl.oo : rtl.c $(CONFIG_H) $(RTL_H)
  141.     $(SUNCC) $(SUNCFLAGS) -c rtl.c -o rtl.oo
  142.  
  143. rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
  144.  
  145. obstack.oo : obstack.c
  146.     $(SUNCC) $(SUNCFLAGS) -c obstack.c -o obstack.oo
  147.  
  148. varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h expr.h insn-codes.h
  149. stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  150.    insn-flags.h expr.h insn-config.h regs.h insn-codes.h
  151. expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  152.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  153. expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  154.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  155. explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h
  156. optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
  157.    insn-flags.h insn-codes.h expr.h insn-config.h recog.h
  158. symout.o : symout.c $(CONFIG_H) $(TREE_H) $(RTL_H) symseg.h gdbfiles.h
  159. dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h
  160. sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h
  161.  
  162. emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) regs.h insn-config.h
  163.  
  164. integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h \
  165.    insn-flags.h insn-codes.h
  166.  
  167. jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h regs.h
  168. stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h
  169.  
  170. cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
  171. loop.o : loop.c $(CONFIG_H) $(RTL_H) insn-config.h regs.h recog.h
  172. flow.o : flow.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h
  173. combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h  \
  174.    insn-config.h regs.h basic-block.h recog.h
  175. regclass.o : regclass.c $(CONFIG_H) $(RTL_H) flags.h regs.h \
  176.    insn-config.h recog.h hard-reg-set.h
  177. local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h \
  178.    insn-config.h recog.h hard-reg-set.h
  179. global-alloc.o : global-alloc.c $(CONFIG_H) $(RTL_H) flags.h  \
  180.    basic-block.h regs.h hard-reg-set.h insn-config.h
  181.  
  182. reload.o : reload.c $(CONFIG_H) $(RTL_H)  \
  183.    reload.h recog.h hard-reg-set.h insn-config.h regs.h
  184. reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h  \
  185.    reload.h regs.h hard-reg-set.h insn-config.h basic-block.h
  186. caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
  187.    reload.h regs.h hard-reg-set.h insn-config.h basic-block.h recog.h
  188. final.o : final.c $(CONFIG_H) $(RTL_H) regs.h recog.h conditions.h gdbfiles.h \
  189.    insn-config.h
  190. recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
  191.    regs.h recog.h hard-reg-set.h insn-config.h
  192.  
  193. # Now the source files that are generated from the machine description.
  194.  
  195. .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
  196.   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c
  197.  
  198. insn-config.h : md genconfig
  199.     ./genconfig md > tmp-insn-config.h
  200.     ./move-if-change tmp-insn-config.h insn-config.h
  201.  
  202. insn-flags.h : md genflags
  203.     ./genflags md > tmp-insn-flags.h
  204.     ./move-if-change tmp-insn-flags.h insn-flags.h
  205.  
  206. insn-codes.h : md gencodes
  207.     ./gencodes md > tmp-insn-codes.h
  208.     ./move-if-change tmp-insn-codes.h insn-codes.h
  209.  
  210. insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h insn-config.h
  211.     $(CC) $(CFLAGS) -c insn-emit.c
  212.  
  213. insn-emit.c : md genemit
  214.     ./genemit md > tmp-insn-emit.c
  215.     ./move-if-change tmp-insn-emit.c insn-emit.c
  216.  
  217. insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h
  218.     $(CC) $(CFLAGS) -c insn-recog.c
  219.  
  220. insn-recog.c : md genrecog
  221.     ./genrecog md > tmp-insn-recog.c
  222.     ./move-if-change tmp-insn-recog.c insn-recog.c
  223.  
  224. insn-extract.o : insn-extract.c $(RTL_H)
  225.     $(CC) $(CFLAGS) -c insn-extract.c
  226.  
  227. insn-extract.c : md genextract
  228.     ./genextract md > tmp-insn-extract.c
  229.     ./move-if-change tmp-insn-extract.c insn-extract.c
  230.  
  231. insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h
  232.     $(CC) $(CFLAGS) -c insn-peep.c
  233.  
  234. insn-peep.c : md genpeep
  235.     ./genpeep md > tmp-insn-peep.c
  236.     ./move-if-change tmp-insn-peep.c insn-peep.c
  237.  
  238. 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
  239.     $(CC) $(CFLAGS) -c insn-output.c
  240.  
  241. insn-output.c : md genoutput
  242.     ./genoutput md > tmp-insn-output.c
  243.     ./move-if-change tmp-insn-output.c insn-output.c
  244.  
  245. # Now the programs that generate those files.
  246.  
  247. genconfig : genconfig.oo rtl.oo $(LIBDEPS1)
  248.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genconfig genconfig.oo rtl.oo $(LIBS1)
  249.  
  250. genconfig.oo : genconfig.c $(RTL_H)
  251.     $(SUNCC) $(SUNCFLAGS) -c genconfig.c -o genconfig.oo
  252.  
  253. genflags : genflags.oo rtl.oo $(LIBDEPS1)
  254.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genflags genflags.oo rtl.oo $(LIBS1)
  255.  
  256. genflags.oo : genflags.c $(RTL_H)
  257.     $(SUNCC) $(SUNCFLAGS) -c genflags.c -o genflags.oo
  258.  
  259. gencodes : gencodes.oo rtl.oo $(LIBDEPS1)
  260.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o gencodes gencodes.oo rtl.oo $(LIBS1)
  261.  
  262. gencodes.oo : gencodes.c $(RTL_H)
  263.     $(SUNCC) $(SUNCFLAGS) -c gencodes.c -o gencodes.oo
  264.  
  265. genemit : genemit.oo rtl.oo $(LIBDEPS1)
  266.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genemit genemit.oo rtl.oo $(LIBS1)
  267.  
  268. genemit.oo : genemit.c $(RTL_H)
  269.     $(SUNCC) $(SUNCFLAGS) -c genemit.c -o genemit.oo
  270.  
  271. genrecog : genrecog.oo rtl.oo $(LIBDEPS1)
  272.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genrecog genrecog.oo rtl.oo $(LIBS1)
  273.  
  274. genrecog.oo : genrecog.c $(RTL_H)
  275.     $(SUNCC) $(SUNCFLAGS) -c genrecog.c -o genrecog.oo
  276.  
  277. genextract : genextract.oo rtl.oo $(LIBDEPS1)
  278.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genextract genextract.oo rtl.oo $(LIBS1)
  279.  
  280. genextract.oo : genextract.c $(RTL_H)
  281.     $(SUNCC) $(SUNCFLAGS) -c genextract.c -o genextract.oo
  282.  
  283. genpeep : genpeep.oo rtl.oo $(LIBDEPS1)
  284.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genpeep genpeep.oo rtl.oo $(LIBS1)
  285.  
  286. genpeep.oo : genpeep.c $(RTL_H)
  287.     $(SUNCC) $(SUNCFLAGS) -c genpeep.c -o genpeep.oo
  288.  
  289. genoutput : genoutput.oo rtl.oo $(LIBDEPS1)
  290.     $(SUNCC) $(SUNCFLAGS) $(LDFLAGS) -o genoutput genoutput.oo rtl.oo $(LIBS1)
  291.  
  292. genoutput.oo : genoutput.c $(RTL_H)
  293.     $(SUNCC) $(SUNCFLAGS) -c genoutput.c -o genoutput.oo
  294.  
  295. # Making the preprocessor
  296. cpp: cccp
  297.     -rm -f cpp
  298.     ln cccp cpp
  299.  
  300. cccp: cccp.o cexp.o version.o $(LIBDEPS)
  301.     $(CC) $(CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS) -s
  302. cexp.o: cexp.c
  303. cexp.c: cexp.y
  304.     $(BISON) cexp.y
  305.     mv cexp.tab.c cexp.c
  306. cccp.o: cccp.c
  307.     $(CC) $(CFLAGS) -DUSE_C_ALLOCA -c cccp.c
  308.  
  309. # gnulib is not deleted because deleting it would be inconvenient
  310. # for most uses of this target.
  311. clean:
  312.     -rm -f *.o *.oo $(ALL) $(STAGESTUFF)
  313.     -rm -f *.s *.s[0-9] *.co *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
  314.     -rm -f core
  315.  
  316. # Get rid of every file that's generated from some other file (except INSTALL).
  317. realclean: clean
  318.     -rm -f cpp.aux cpp.cps cpp.fns cpp.info cpp.kys cpp.pgs cpp.tps cpp.vrs
  319.     -rm -f errs gnulib TAGS 
  320.  
  321. # Copy the files into directories where they will be run.
  322. #install: all
  323. #    install cc1 $(libdir)/gcc-cc1
  324. #    install cpp $(libdir)/gcc-cpp
  325. #    install gcc $(bindir)
  326.  
  327. force:
  328.  
  329. #In GNU Make, ignore whether `stage*' exists.
  330. .PHONY: clean realclean
  331.