]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
* Parser/tokenizer.c: backup over illegal newline in string
authorGuido van Rossum <guido@python.org>
Tue, 23 Aug 1994 13:38:57 +0000 (13:38 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 23 Aug 1994 13:38:57 +0000 (13:38 +0000)
literal (for "completeness" test)
* */Makefile*.in: remove lib*.a before adding to it

Parser/Makefile.in

index 4c1e1fab5b3c0618df1df26793ed55f88f27be45..899ad9289bb331eb966568dfe5f59275877b4f0f 100644 (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)