mirror of https://github.com/python/cpython.git
* 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:
parent
b4f066da49
commit
d250ee2413
|
@ -17,7 +17,7 @@ DEFS= @DEFS@
|
||||||
# === Other things that are customizable but not by configure ===
|
# === Other things that are customizable but not by configure ===
|
||||||
|
|
||||||
INCLDIR= $(srcdir)/../Include
|
INCLDIR= $(srcdir)/../Include
|
||||||
OPT= -O
|
OPT= @OPT@
|
||||||
CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS)
|
CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS)
|
||||||
|
|
||||||
MKDEP= mkdep
|
MKDEP= mkdep
|
||||||
|
@ -46,6 +46,7 @@ LIB= libParser.a
|
||||||
all: $(LIB) $(PGEN)
|
all: $(LIB) $(PGEN)
|
||||||
|
|
||||||
$(LIB): $(PARSEROBJS)
|
$(LIB): $(PARSEROBJS)
|
||||||
|
-rm -f $(LIB)
|
||||||
$(AR) cr $(LIB) $(PARSEROBJS)
|
$(AR) cr $(LIB) $(PARSEROBJS)
|
||||||
$(RANLIB) $(LIB)
|
$(RANLIB) $(LIB)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue