diff options
author | Guido van Rossum <guido@python.org> | 1994-08-23 13:38:57 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-23 13:38:57 (GMT) |
commit | d250ee2413ebaa699b6d720dd1ab937b7901b6b0 (patch) | |
tree | a454069bcecd1bd00457fc97a215b455ed431580 /Parser | |
parent | b4f066da499f09814c7361dee3c85ca9ff711efb (diff) | |
download | cpython-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.in | 3 |
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) |