From 672fd7e23872348476fea0af028ae867d7160f37 Mon Sep 17 00:00:00 2001 From: Jan Brittenson Date: Thu, 23 Sep 1993 09:48:35 -0700 Subject: [PATCH] added bytecode dependencies From-SVN: r5432 --- gcc/Makefile.in | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 96f743f0248..1a8c425687e 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -920,15 +920,18 @@ rtl.o : rtl.c $(CONFIG_H) $(RTL_H) print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H) rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H) +toplev.o: bytecode.h bc-emit.h varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \ - defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h + defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h bytecode.h function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \ insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \ - recog.h output.h + recog.h output.h bytecode.h stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \ insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h + bytecode.h bc-typecd.h bc-opcode.h bc-optab.h bc-emit.h expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \ - insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h + insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h \ + bytecode.h bc-opcode.h bc-typecd.h bc-optab.h bc-emit.h modemap.def calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \ insn-flags.h gvarargs.h expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \ @@ -945,12 +948,14 @@ dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \ insn-config.h reload.h output.h defaults.h xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h \ - regs.h insn-config.h insn-codes.h real.h expr.h + regs.h insn-config.h insn-codes.h real.h expr.h bytecode.h bc-opcode.h \ + bc-typecd.h bc-optab.h bc-emit.h bc-opname.h real.o : real.c $(CONFIG_H) $(TREE_H) getpwd.o : getpwd.c $(CONFIG_H) integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \ - insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h + insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h \ + bytecode.h jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \ insn-config.h insn-flags.h insn-codes.h expr.h real.h @@ -968,7 +973,7 @@ combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h \ insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \ basic-block.h recog.h real.h hard-reg-set.h regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \ - basic-block.h regs.h insn-config.h recog.h reload.h real.h + basic-block.h regs.h insn-config.h recog.h reload.h real.h bytecode.h local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \ regs.h hard-reg-set.h insn-config.h recog.h output.h global.o : global.c $(CONFIG_H) $(RTL_H) flags.h \ @@ -1292,9 +1297,12 @@ bi-parser.o: $(srcdir)/bi-parser.c $(srcdir)/bi-defs.h bi-lexer.c: $(srcdir)/bi-lexer.l $(srcdir)/bi-parser.h -bi-lexer.o: bi-lexer.c bi-parser.h +bi-lexer.o: $(srcdir)/bi-lexer.c $(srcdir)/bi-parser.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/bi-lexer.c +bi-arity.o bi-opcode.o bi-opname.o bi-parser.o bi-reverse.o: $(srcdir)/bi-defs.h + + bc-arity.h: $(srcdir)/bytecode.def bi-arity -rm -f bc-arity.h ./bi-arity < $(srcdir)/bytecode.def > bc-arity.h -- 2.30.2