From d250ee2413ebaa699b6d720dd1ab937b7901b6b0 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 23 Aug 1994 13:38:57 +0000 Subject: [PATCH] * Parser/tokenizer.c: backup over illegal newline in string literal (for "completeness" test) * */Makefile*.in: remove lib*.a before adding to it --- Parser/Makefile.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Parser/Makefile.in b/Parser/Makefile.in index 4c1e1fab5b3..899ad9289bb 100644 --- a/Parser/Makefile.in +++ b/Parser/Makefile.in @@ -17,7 +17,7 @@ DEFS= @DEFS@ # === Other things that are customizable but not by configure === INCLDIR= $(srcdir)/../Include -OPT= -O +OPT= @OPT@ CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS) MKDEP= mkdep @@ -46,6 +46,7 @@ LIB= libParser.a all: $(LIB) $(PGEN) $(LIB): $(PARSEROBJS) + -rm -f $(LIB) $(AR) cr $(LIB) $(PARSEROBJS) $(RANLIB) $(LIB)