Return-Path: Delivered-To: apmail-jakarta-tomcat-dev-archive@jakarta.apache.org Received: (qmail 14990 invoked by uid 500); 24 Apr 2001 20:22:15 -0000 Mailing-List: contact tomcat-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: list-post: Reply-To: tomcat-dev@jakarta.apache.org Delivered-To: mailing list tomcat-dev@jakarta.apache.org Received: (qmail 14980 invoked by uid 500); 24 Apr 2001 20:22:15 -0000 Delivered-To: apmail-jakarta-tomcat-4.0-cvs@apache.org Date: 24 Apr 2001 20:22:15 -0000 Message-ID: <20010424202215.14976.qmail@apache.org> From: pier@apache.org To: jakarta-tomcat-4.0-cvs@apache.org Subject: cvs commit: jakarta-tomcat-4.0/connectors/lib Makefile.in pier 01/04/24 13:22:15 Modified: connectors/lib Makefile.in Log: Damn makefiles with TABS Revision Changes Path 1.3 +6 -6 jakarta-tomcat-4.0/connectors/lib/Makefile.in Index: Makefile.in =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/connectors/lib/Makefile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- Makefile.in 2001/04/24 20:20:33 1.2 +++ Makefile.in 2001/04/24 20:22:14 1.3 @@ -56,7 +56,7 @@ # ========================================================================= # # @author Pier Fumagalli -# @version $Id: Makefile.in,v 1.2 2001/04/24 20:20:33 pier Exp $ +# @version $Id: Makefile.in,v 1.3 2001/04/24 20:22:14 pier Exp $ include ../Makedefs @@ -67,10 +67,10 @@ all: $(LIB) $(LIB): $(OBJS) - @echo - Linking library $(LIB) - @$(AR) -cr $(LIB) $(OBJS) - @$(RANLIB) $(LIB) + @echo - Linking library $(LIB) + @$(AR) -cr $(LIB) $(OBJS) + @$(RANLIB) $(LIB) clean: - @echo Removing object files $(OBJS) $(LIB) - @rm -f $(OBJS) $(LIB) + @echo Removing object files $(OBJS) $(LIB) + @rm -f $(OBJS) $(LIB)