* Parser/tokenizer.c: backup over illegal newline in string

literal (for "completeness" test)
	* */Makefile*.in: remove lib*.a before adding to it
This commit is contained in:
Guido van Rossum 1994-08-23 13:38:57 +00:00
parent b4f066da49
commit d250ee2413
1 changed files with 2 additions and 1 deletions

View File

@ -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)