diff options
author | Stan Cox <scox@redhat.com> | 2000-08-22 16:16:20 +0000 |
---|---|---|
committer | Stan Cox <scox@gcc.gnu.org> | 2000-08-22 16:16:20 +0000 |
commit | d061bc1e93f961c03cc6105d96540dd1a97adf72 (patch) | |
tree | d70590c530c0b59b993a77f9a6236d30a8a481f8 /gcc/Makefile.in | |
parent | 3cadd7783a7d69837dc2f60e448f156ca03215a0 (diff) | |
download | gcc-d061bc1e93f961c03cc6105d96540dd1a97adf72.zip gcc-d061bc1e93f961c03cc6105d96540dd1a97adf72.tar.gz gcc-d061bc1e93f961c03cc6105d96540dd1a97adf72.tar.bz2 |
Makefile.in (OBJS): Add dependence.o.
* Makefile.in (OBJS): Add dependence.o.
* dependence.c: New file.
From-SVN: r35876
Diffstat (limited to 'gcc/Makefile.in')
-rw-r--r-- | gcc/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index a4ed78b..de7e5b8 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -696,7 +696,7 @@ OBJS = diagnostic.o version.o tree.o print-tree.o stor-layout.o fold-const.o \ profile.o insn-attrtab.o $(out_object_file) $(EXTRA_OBJS) convert.o \ mbchar.o splay-tree.o graph.o sbitmap.o resource.o hash.o predict.o \ lists.o ggc-common.o $(GGC) simplify-rtx.o ssa.o bb-reorder.o \ - sibcall.o conflict.o timevar.o ifcvt.o dce.o + sibcall.o conflict.o timevar.o ifcvt.o dependence.o dce.o BACKEND = toplev.o libbackend.a @@ -1411,6 +1411,9 @@ regrename.o : regrename.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \ ifcvt.o : ifcvt.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) \ flags.h insn-config.h function.h $(RECOG_H) $(BASIC_BLOCK_H) $(EXPR_H) \ output.h +dependence.o : dependence.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) c-common.h \ + flags.h varray.h + $(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) $(GGC_H) \ $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \ insn-flags.h output.h $(INSN_ATTR_H) insn-codes.h system.h toplev.h function.h |