diff options
author | Richard Stallman <rms@gnu.org> | 1993-09-28 00:55:51 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-09-28 00:55:51 +0000 |
commit | 2da63e2ae05e4cf70bc307c4eb741d5865bf3aa2 (patch) | |
tree | 3de4e4d2d47c779368a6fbab48261b8f7dc5a4c8 | |
parent | 7dce5088a717c7645e182950f744e52eacb05b3b (diff) | |
download | gcc-2da63e2ae05e4cf70bc307c4eb741d5865bf3aa2.zip gcc-2da63e2ae05e4cf70bc307c4eb741d5865bf3aa2.tar.gz gcc-2da63e2ae05e4cf70bc307c4eb741d5865bf3aa2.tar.bz2 |
(stamp-bcopname, stamp-bcopcode, stamp-bcarity): Don't rm the .h files.
(STAGESTUFF): Add some bc and bi files.
From-SVN: r5500
-rw-r--r-- | gcc/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 5f78fb7..a8efd3a 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -434,6 +434,9 @@ STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \ stamp-attr stamp-attrtab stamp-opinit stamp-proto \ genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \ genattrtab genattr genopinit \ + bc-arity.h bc-opcode.h bc-opname.h \ + stamp-bcarity stamp-bcopcode stamp-bcopname \ + bi-arity bi-opcode bi-opname \ $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp g++ g++-cross \ cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2) @@ -1322,19 +1325,16 @@ bi-reverse.o: bi-reverse.c $(srcdir)/bi-defs.h bc-arity.h: stamp-bcarity ; @true stamp-bcarity : $(srcdir)/bytecode.def bi-arity $(srcdir)/move-if-change - -rm -f bc-arity.h ./bi-arity < $(srcdir)/bytecode.def >tmp-bc-arity.h $(srcdir)/move-if-change tmp-bc-arity.h bc-arity.h bc-opcode.h: stamp-bcopcode ; @true stamp-bcopcode : $(srcdir)/bytecode.def bi-opcode $(srcdir)/move-if-change - -rm -f bc-opcode.h ./bi-opcode < $(srcdir)/bytecode.def >tmp-bc-opcode.h $(srcdir)/move-if-change tmp-bc-opcode.h bc-opcode.h bc-opname.h: stamp-bcopname ; @true stamp-bcopname : $(srcdir)/bytecode.def bi-opname $(srcdir)/move-if-change - -rm -f bc-opname.h ./bi-opname < $(srcdir)/bytecode.def >tmp-bc-opname.h $(srcdir)/move-if-change tmp-bc-opname.h bc-opname.h |