You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by hg...@apache.org on 2001/05/15 12:17:09 UTC

cvs commit: jakarta-tomcat-connectors/jk/src/native/apache-1.3 Makefile.in

hgomez      01/05/15 03:17:09

  Added:       jk/src/native/apache-1.3 Makefile.in
  Log:
  initial configure support
  Provided by Jean-Frederic Clere <jf...@fujitsu-siemens.com>
  
  Revision  Changes    Path
  1.1                  jakarta-tomcat-connectors/jk/src/native/apache-1.3/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  ## configure should make the Makefile out of this file.
  
  APXS=@APXS@
  OS=@OS@
  JAVA_HOME=@JAVA_HOME@
  
  JAVA_INCL=-I ${JAVA_HOME}/include -I ${JAVA_HOME}/include/${OS}
  JAVA_LIB=-L ${JAVA_HOME}/jre/lib/${ARCH} -L ${JAVA_HOME}/lib/${ARCH}/native_threads
  
  JK=../common/
  SRCS=${JK}/jk_ajp12_worker.c ${JK}/jk_connect.c ${JK}/jk_msg_buff.c ${JK}/jk_util.c ${JK}/jk_ajp13.c \
       ${JK}/jk_jni_worker.c ${JK}/jk_pool.c ${JK}/jk_worker.c ${JK}/jk_ajp13_worker.c ${JK}/jk_lb_worker.c \
       ${JK}/jk_sockbuf.c  ${JK}/jk_map.c ${JK}/jk_uri_worker_map.c          
  
  
  all: mod_jk.so
  
  mod_jk.so: 
  	$(APXS) -I ${JK} ${JAVA_INCL} -c -o $@ mod_jk.c $(SRCS) 
  
  clean:
  	rm *.o *.so