summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1994-08-23 13:38:57 (GMT)
committerGuido van Rossum <guido@python.org>1994-08-23 13:38:57 (GMT)
commitd250ee2413ebaa699b6d720dd1ab937b7901b6b0 (patch)
treea454069bcecd1bd00457fc97a215b455ed431580 /Parser
parentb4f066da499f09814c7361dee3c85ca9ff711efb (diff)
downloadcpython-d250ee2413ebaa699b6d720dd1ab937b7901b6b0.zip
cpython-d250ee2413ebaa699b6d720dd1ab937b7901b6b0.tar.gz
cpython-d250ee2413ebaa699b6d720dd1ab937b7901b6b0.tar.bz2
* Parser/tokenizer.c: backup over illegal newline in string
literal (for "completeness" test) * */Makefile*.in: remove lib*.a before adding to it
Diffstat (limited to 'Parser')
-rw-r--r--Parser/Makefile.in3
1 files changed, 2 insertions, 1 deletions
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 @@ 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)