[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / kan96xx / plugin

Diff for /OpenXM/src/kan96xx/plugin/Makefile.in between version 1.2 and 1.8

version 1.2, 2003/09/11 00:52:06 version 1.8, 2016/03/30 08:25:43
Line 1 
Line 1 
 #$OpenXM: OpenXM/src/kan96xx/plugin/Makefile.in,v 1.1 2003/09/02 03:24:50 takayama Exp $  #$OpenXM: OpenXM/src/kan96xx/plugin/Makefile.in,v 1.7 2010/08/18 07:23:32 ohara Exp $
 #  #
 #  depends on install-gmp  #  depends on install-gmp
 #  The source directory of gmp must exist.  #  The source directory of gmp must exist.
 #  #
 OpenXM_HOME=../../..  OpenXM_HOME=@prefix@
 OpenXM_include=${OpenXM_HOME}/include  OpenXM_include=${OpenXM_HOME}/include
 OpenXM_contrib=${OpenXM_HOME}/../OpenXM_contrib  #
   OpenXM_HOME_debug=../../..
   OpenXM_contrib=${OpenXM_HOME_debug}/../OpenXM_contrib
 Kan96xx=..  Kan96xx=..
 Gmp_sourcedir=${OpenXM_contrib}/gmp  Gmp_sourcedir=${OpenXM_contrib}/gmp
   
Line 17  RANLIB=@RANLIB@
Line 19  RANLIB=@RANLIB@
 #CFLAGS+=-g -I${OpenXM_include} -I${Kan96xx}/Kan -D_BSD_SOURCE  #CFLAGS+=-g -I${OpenXM_include} -I${Kan96xx}/Kan -D_BSD_SOURCE
 CFLAGS=@CFLAGS@ -g -I${OpenXM_include} -I${Kan96xx}/Kan -D_BSD_SOURCE  CFLAGS=@CFLAGS@ -g -I${OpenXM_include} -I${Kan96xx}/Kan -D_BSD_SOURCE
   
 all: configure cmo.a file2.a ox.a sample.a sm1Socket.a  all: configure cmo.a file2.a ox.a sample.a sm1Socket.a  oxxml.a oxcgi.a
 configure: Makefile  configure: Makefile
   
 Makefile: Makefile.in  Makefile: Makefile.in
         ./configure          ./configure
   
 ## .SUFFIXES:  
 .c.o:  
         ${CC} ${CFLAGS}  -c $<  
   
 cmo.a: cmo.o cmo-gmp.o  cmo.a: cmo.o cmo-gmp.o
         $(AR) ru $@ $?          $(AR) ru $@ $?
         ${RANLIB} $@          ${RANLIB} $@
Line 57  file2.a: file2.o
Line 55  file2.a: file2.o
   
 file2.o: file2.h file2.c  file2.o: file2.h file2.c
   
 ox.a: mytcpio.o oxmisc.o oxmisc2.o  ox.a: mytcpio.o oxmisc.o oxmisc2.o mysig.o
         ${AR} ru $@ $?          ${AR} ru $@ $?
         ${RANLIB} $@          ${RANLIB} $@
   
Line 83  ox_kan.h: cmotag.h file2.h mathcap.h oxFunctionId.h ox
Line 81  ox_kan.h: cmotag.h file2.h mathcap.h oxFunctionId.h ox
 mytcpio.o: ox.h ox.hh ox_kan.h mytcpio.c  mytcpio.o: ox.h ox.hh ox_kan.h mytcpio.c
 oxmisc.o: ox.h ox.hh ox_kan.h oxmisc.c  oxmisc.o: ox.h ox.hh ox_kan.h oxmisc.c
 oxmisc2.o: cmo.h mathcap.h ox.h ox.hh ox_kan.h oxmisc2.c  oxmisc2.o: cmo.h mathcap.h ox.h ox.hh ox_kan.h oxmisc2.c
   mysig.o: mysig.h mysig.c
   
 sample.a: sample.o  sample.a: sample.o
         ${AR} ru $@ $?          ${AR} ru $@ $?
Line 95  sm1Socket.a: sm1Socket.o
Line 94  sm1Socket.a: sm1Socket.o
         ${RANLIB} sm1Socket.a          ${RANLIB} sm1Socket.a
   
 sm1Socket.o: sm1Socket.h sm1Socket.hh sm1Socket.c  sm1Socket.o: sm1Socket.h sm1Socket.hh sm1Socket.c
   
   oxxml.a: oxxml.o
           ${AR} ru oxxml.a oxxml.o
           ${RANLIB} oxxml.a
   
   oxxml.o: oxxml.h oxxml.hh oxxml.c
   
   oxcgi.a: oxcgi.o
           ${AR} ru oxcgi.a oxcgi.o
           ${RANLIB} oxcgi.a
   
   oxcgi.o: oxcgi.h oxcgi.hh oxcgi.c
   
   
 clean:  clean:

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.8

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>