diff options
author | Richard Stallman <rms@gnu.org> | 1993-09-23 16:02:22 +0000 |
---|---|---|
committer | Richard Stallman <rms@gnu.org> | 1993-09-23 16:02:22 +0000 |
commit | c059f055c22a7d9638dbed317e30368302aad020 (patch) | |
tree | cdc21ac2e8a293c7c1448188eb22131f0057e81e /gcc | |
parent | ef026f9101328fcfbf79b3ed5280135230afefc2 (diff) | |
download | gcc-c059f055c22a7d9638dbed317e30368302aad020.zip gcc-c059f055c22a7d9638dbed317e30368302aad020.tar.gz gcc-c059f055c22a7d9638dbed317e30368302aad020.tar.bz2 |
Fix typos in recent changes.
(bc-arity.h, bc-opcode.h, bc-opname.h): Use `./'.
From-SVN: r5431
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 44741e3..96f743f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1293,19 +1293,19 @@ 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 - $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $9srcdir)/bi-lexer.c + $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/bi-lexer.c bc-arity.h: $(srcdir)/bytecode.def bi-arity -rm -f bc-arity.h - bi-arity < $(srcdir)/bytecode.def > bc-arity.h + ./bi-arity < $(srcdir)/bytecode.def > bc-arity.h bc-opcode.h: $(srcdir)/bytecode.def bi-opcode - -rm -f bc-arity.h - bi-opcode < $(srcdir)/bytecode.def > bc-arity.h + -rm -f bc-opcode.h + ./bi-opcode < $(srcdir)/bytecode.def > bc-opcode.h bc-opname.h: $(srcdir)/bytecode.def bi-opname - -rm -f bc-arity.h - bi-opname < $(srcdir)/bytecode.def > bc-arity.h + -rm -f bc-opname.h + ./bi-opname < $(srcdir)/bytecode.def > bc-opname.h bytecode.mostlyclean: -rm -f bc-arity.h bc-opcode.h bc-opname.h |