You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by pi...@apache.org on 2001/09/16 01:42:48 UTC

cvs commit: jakarta-tomcat-connectors/webapp Makedefs.in

pier        01/09/15 16:42:48

  Modified:    webapp   Makedefs.in
  Log:
  Added new variables detected in "configure" script.
  More documentation on what the variables are (this file is getting big).
  
  Revision  Changes    Path
  1.8       +88 -44    jakarta-tomcat-connectors/webapp/Makedefs.in
  
  Index: Makedefs.in
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-connectors/webapp/Makedefs.in,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Makedefs.in	2001/08/06 21:02:27	1.7
  +++ Makedefs.in	2001/09/15 23:42:48	1.8
  @@ -56,49 +56,93 @@
   # ========================================================================= #
   
   # @author  Pier Fumagalli <ma...@eng.sun.com>
  -# @version $Id: Makedefs.in,v 1.7 2001/08/06 21:02:27 pier Exp $
  +# @version $Id: Makedefs.in,v 1.8 2001/09/15 23:42:48 pier Exp $
   
  -.SUFFIXES: .c .lo
  +.SUFFIXES: .c .o
   
  -# Values imported from @APRDIR@/APRVARS
  -CC =             @CC@
  -CPP =            @CPP@
  -SHELL =          @SHELL@
  -LIBTOOL =        @LIBTOOL@
  -EXTRA_CFLAGS =   @EXTRA_CFLAGS@
  -EXTRA_CPPFLAGS = @EXTRA_CPPFLAGS@
  -EXTRA_LDFLAGS =  @EXTRA_LDFLAGS@
  -EXTRA_LIBS =     @EXTRA_LIBS@
  -EXTRA_INCLUDES = @EXTRA_INCLUDES@
  -LIBTOOL_LIBS =   @LIBTOOL_LIBS@
  -
  -# Default programs discovered by configure
  -CAT =            @CAT@
  -ECHO =           @ECHO@
  -GREP =           @GREP@
  -RM =             @RM@
  -SED =            @SED@
  -TEST =           @TEST@
  -TRUE =           @TRUE@
  -
  -# Java values discovered by configure
  -JAVA_HOME =      @JAVA_HOME@
  -JAR =            @JAR@
  -JAVAC =          @JAVAC@
  -JAVACFLAGS =     @JAVACFLAGS@
  -JAVACPATH = 	 @TOMCATDIR@/common/lib/servlet.jar:@TOMCATDIR@/server/lib/catalina.jar
  -
  -# Compilation flags set by configure
  -CFLAGS =         @CFLAGS@
  -CPPFLAGS =       @CPPFLAGS@
  -LTFLAGS =        @LTFLAGS@
  -DEBUG = 	 @DEBUG@
  -
  -# Compile a C source using APR's libtool
  -.c.lo: @SRCDIR@/Makedefs
  -	@echo Compiling $<
  -	@$(SHELL) $(LIBTOOL) $(LTFLAGS) --mode=compile \
  -		$(CC) \
  -		$(CFLAGS) $(EXTRA_CFLAGS) \
  -		$(CPPFLAGS) $(EXTRA_CPPFLAGS) \
  -		-c $< -o $@
  +# -------------------------------------------------------------------------
  +# Programs discovered by "configure" during initialization
  +# -------------------------------------------------------------------------
  +
  +TEST = @TEST@
  +TRUE = @TRUE@
  +ECHO = @ECHO@
  +GREP = @GREP@
  +CAT = @CAT@
  +SED = @SED@
  +RM = @RM@
  +
  +# -------------------------------------------------------------------------
  +# Compilation settings
  +# -------------------------------------------------------------------------
  +
  +# The target module to build
  +MODULE = @MODULE@
  +# The system which built this binary
  +SYSTEM = @SYSTEM@
  +# Wether to build debug information or not
  +DEBUG = @DEBUG@
  +# The WebApp sources directory
  +SRCDIR = @SRCDIR@
  +# The compilation (this) directory
  +TGTDIR = @TGTDIR@
  +# The directory of a Tomcat 4.0 binary distribution
  +TC4DIR = @TC4DIR@
  +
  +# -------------------------------------------------------------------------
  +# APR library values
  +# -------------------------------------------------------------------------
  +
  +# The APR source directory (if needed)
  +APR_SRCDIR = @APR_SRCDIR@
  +# Where libapr.a resides
  +APR_LIBDIR = @APR_LIBDIR@
  +# Where APR include files are located
  +APR_INCDIR = @APR_INCDIR@
  +# Location of APRVARS
  +APR_VARFIL = @APR_VARFIL@
  +
  +# -------------------------------------------------------------------------
  +# C Compiler settings
  +# -------------------------------------------------------------------------
  +
  +# Library archiver
  +AR = @AR@
  +# C compiler
  +CC = @CC@
  +# C macro pre-processor
  +CPP = @CPP@
  +# Library updater
  +RANLIB = @RANLIB@
  +# C compilation flags
  +CFLAGS = @CFLAGS@
  +# C macro pre-processor flags
  +CPPFLAGS = @CPPFLAGS@
  +
  +# -------------------------------------------------------------------------
  +# Java Compiler settings
  +# -------------------------------------------------------------------------
  +
  +# The JVM home directory
  +JAVA_HOME = @JAVA_HOME@
  +# Jar archiver
  +JAR = @JAR@
  +# Java compiler
  +JAVAC = @JAVAC@
  +# JavaDoc documentation tool
  +JAVADOC = @JAVADOC@
  +# Java compilation flags
  +JAVACFLAGS = @JAVACFLAGS@
  +# Java Class Path
  +CLASSPATH = @CLASSPATH@
  +
  +# -------------------------------------------------------------------------
  +# C-Compilation default setting
  +# -------------------------------------------------------------------------
  +.c.o:
  +	@$(ECHO) "Compiling \"$<\""
  +	@$(CC) $(CFLAGS) $(CPPFLAGS) \
  +		$(APR_CFLAGS) $(APR_CPPFLAGS) \
  +		-I$(APR_INCDIR) -I$(SRCDIR)/include \
  +		-c "$<" -o "$@"
  +