errors.c: clear traceback too.

Makefile.in: remove lib*.a before creating new one.
This commit is contained in:
Guido van Rossum 1994-08-19 15:37:11 +00:00
parent b1ba03f045
commit 24f4850377
1 changed files with 2 additions and 1 deletions

View File

@ -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)