You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jf...@apache.org on 2001/06/22 11:45:59 UTC

cvs commit: jakarta-tomcat-connectors/webapp/lib Makefile.in

jfclere     01/06/22 02:45:59

  Modified:    webapp   Makefile.in
               webapp/apache-1.3 Makefile.in
               webapp/lib Makefile.in
  Log:
  Add make install (via apxs -i). Change the make -C to (cd ; make).
  
  Revision  Changes    Path
  1.5       +14 -3     jakarta-tomcat-connectors/webapp/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/Makefile.in,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile.in	2001/05/10 06:05:41	1.4
  +++ Makefile.in	2001/06/22 09:45:56	1.5
  @@ -56,7 +56,7 @@
   # ========================================================================= #
   
   # @author  Pier Fumagalli <ma...@eng.sun.com>
  -# @version $Id: Makefile.in,v 1.4 2001/05/10 06:05:41 pier Exp $
  +# @version $Id: Makefile.in,v 1.5 2001/06/22 09:45:56 jfclere Exp $
   
   include Makedefs
   
  @@ -73,7 +73,7 @@
   all:
   	@for DIR in $(DIRS) ; do \
   		echo "Compiling sources in $$DIR..." ; \
  -		$(MAKE) -C $$DIR all ; \
  +		(cd $$DIR; $(MAKE) all) ; \
   		RET=$$? ; \
   		if ( test "$$RET" != "0" ) ; then \
   			exit $$RET ; \
  @@ -83,12 +83,23 @@
   clean:
   	@for DIR in $(DIRS) ; do \
   		echo "Cleaning up $$DIR..." ; \
  -		$(MAKE) -C $$DIR clean ; \
  +		(cd $$DIR; $(MAKE) clean) ; \
   		RET=$$? ; \
   		if ( test "$$RET" != "0" ) ; then \
   			exit $$RET ; \
   		fi ; \
   	done
  +
  +install:
  +	@for DIR in $(DIRS) ; do \
  +		echo "Installing $$DIR..." ; \
  +		(cd $$DIR; $(MAKE) install) ; \
  +		RET=$$? ; \
  +		if ( test "$$RET" != "0" ) ; then \
  +			exit $$RET ; \
  +		fi ; \
  +	done
  +
   
   apidocs: include/*.h
   	@echo "Generating API documentation..."
  
  
  
  1.2       +4 -1      jakarta-tomcat-connectors/webapp/apache-1.3/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/apache-1.3/Makefile.in,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile.in	2001/05/10 06:13:29	1.1
  +++ Makefile.in	2001/06/22 09:45:57	1.2
  @@ -56,7 +56,7 @@
   # ========================================================================= #
   
   # @author  Pier Fumagalli <ma...@eng.sun.com>
  -# @version $Id: Makefile.in,v 1.1 2001/05/10 06:13:29 pier Exp $
  +# @version $Id: Makefile.in,v 1.2 2001/06/22 09:45:57 jfclere Exp $
   
   include ../Makedefs
   
  @@ -69,6 +69,9 @@
   mod_webapp.so:
   	@echo Linking Apache 1.3.x module
   	@$(APXS) -c $(APXSFLAGS) mod_webapp.c
  +install: mod_webapp.so
  +	@echo Installing Apache 1.3.x module
  +	@$(APXS) -i mod_webapp.so
   
   clean:
   	@echo Removing object files $(OBJS) $(MODULE)
  
  
  
  1.9       +4 -1      jakarta-tomcat-connectors/webapp/lib/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/lib/Makefile.in,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Makefile.in	2001/05/10 21:12:31	1.8
  +++ Makefile.in	2001/06/22 09:45:58	1.9
  @@ -56,7 +56,7 @@
   # ========================================================================= #
   
   # @author  Pier Fumagalli <ma...@eng.sun.com>
  -# @version $Id: Makefile.in,v 1.8 2001/05/10 21:12:31 pier Exp $
  +# @version $Id: Makefile.in,v 1.9 2001/06/22 09:45:58 jfclere Exp $
   
   include ../Makedefs
   
  @@ -75,3 +75,6 @@
   clean:
   	@echo Removing object files $(OBJS) $(PROVS) $(LIB)
   	@rm -f $(OBJS) $(PROVS) $(LIB)
  +
  +install:
  +