* Parser/tokenizer.c: backup over illegal newline in string
	literal (for "completeness" test)
	* */Makefile*.in: remove lib*.a before adding to it
diff --git a/Parser/Makefile.in b/Parser/Makefile.in
index 4c1e1fa..899ad92 100644
--- a/Parser/Makefile.in
+++ b/Parser/Makefile.in
@@ -17,7 +17,7 @@
 # === 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 @@
 all:		$(LIB) $(PGEN)
 
 $(LIB):		$(PARSEROBJS)
+		-rm -f $(LIB)
 		$(AR) cr $(LIB) $(PARSEROBJS)
 		$(RANLIB) $(LIB)