diff options
author | Guido van Rossum <guido@python.org> | 1994-08-19 15:37:11 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-08-19 15:37:11 (GMT) |
commit | 24f4850377370818af9b8c9a708e30a71b5bff7f (patch) | |
tree | fc52a1873a7480b9f3ce5b4fb96270b9a60ada39 /Python | |
parent | b1ba03f0456bc96fe78a40ea2f20343777a547b2 (diff) | |
download | cpython-24f4850377370818af9b8c9a708e30a71b5bff7f.zip cpython-24f4850377370818af9b8c9a708e30a71b5bff7f.tar.gz cpython-24f4850377370818af9b8c9a708e30a71b5bff7f.tar.bz2 |
errors.c: clear traceback too.
Makefile.in: remove lib*.a before creating new one.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in index f61fea8..ba69a60 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -20,7 +20,7 @@ DLINCLDIR= @DLINCLDIR@ # === Other things that are customizable but not by configure === INCLDIR= $(srcdir)/../Include -OPT= -O +OPT= @OPT@ CFLAGS= $(OPT) -I$(INCLDIR) -I.. $(DEFS) MKDEP= mkdep @@ -52,6 +52,7 @@ SYSLIBS= -lm all: $(LIB) $(LIB): $(OBJS) + -rm -f $(LIB) $(AR) cr $(LIB) $(OBJS) $(RANLIB) $(LIB) |