From a5c369a03734cbb9de4181fe294f409a0e655de4 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 4 Jun 2002 08:29:53 +0000 Subject: [PATCH] ignore errors on del. --- win/makefile | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/win/makefile b/win/makefile index 737ac54..cbd3e75 100644 --- a/win/makefile +++ b/win/makefile @@ -1,5 +1,5 @@ # makefile.mak - makefile for MS NMAKE -# $Id: makefile,v 1.40 2002-06-02 21:34:45 adam Exp $ +# $Id: makefile,v 1.41 2002-06-04 08:29:53 adam Exp $ # # Programmed by # HL: Heikki Levanto, Index Data @@ -376,9 +376,9 @@ COMMON_YAZ_OBJS= \ $(YAZ_ZOOM_OBJS) YAZ_OBJS= \ - $(COMMON_YAZ_OBJS) \ $(Z3950_OBJS) \ - $(ILL_OBJS) + $(ILL_OBJS) \ + $(COMMON_YAZ_OBJS) DLL_OBJS= $(YAZ_OBJS) @@ -785,14 +785,14 @@ $(ZTEST) : "$(BINDIR)" $(ZTEST_OBJS) $(DLL) ############## clean clean: - del $(BINDIR)\*.exe - del $(BINDIR)\*.dll - del $(TMPDIR)\*. + -del $(BINDIR)\*.exe + -del $(BINDIR)\*.dll + -del $(TMPDIR)\*. - del $(LIBDIR)\*.MAP + -del $(LIBDIR)\*.MAP - del $(LIBDIR)\*.LIB - del $(OBJDIR)\*.OBJ + -del $(LIBDIR)\*.LIB + -del $(OBJDIR)\*.OBJ realclean: clean del $(Z3950_C_DIR)\*.c @@ -833,7 +833,10 @@ $(ILL_OBJS): $(ILL_CORE_FILES) $(ITEM_REQ_FILES) ########################################################### # # $Log: makefile,v $ -# Revision 1.40 2002-06-02 21:34:45 adam +# Revision 1.41 2002-06-04 08:29:53 adam +# ignore errors on del. +# +# Revision 1.40 2002/06/02 21:34:45 adam # Remove --enable-module option # # Revision 1.39 2002/05/31 08:48:06 adam -- 1.7.10.4