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

Diff for /OpenXM/src/kxx/Makefile.in between version 1.44 and 1.48

version 1.44, 2016/03/31 05:27:34 version 1.48, 2020/10/07 07:47:23
Line 1 
Line 1 
 ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.43 2016/03/30 08:25:44 takayama Exp $  ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.47 2016/09/20 04:47:36 takayama Exp $
 #  Depends on  all-kan96xx [source tree of kan96xx at ${Kan96xx} is required]  #  Depends on  all-kan96xx [source tree of kan96xx at ${Kan96xx} is required]
 #              install-gmp, install-gc, install-util  #              install-gmp, install-gc, install-util
 #  #
Line 22  OpenXM_bin=${OpenXM_HOME}/bin
Line 22  OpenXM_bin=${OpenXM_HOME}/bin
 OpenXM_lib=${OpenXM_HOME}/lib  OpenXM_lib=${OpenXM_HOME}/lib
 OpenXM_include=${OpenXM_HOME}/include  OpenXM_include=${OpenXM_HOME}/include
 OXWEAVE=${OpenXM_bin}/oxweave  OXWEAVE=${OpenXM_bin}/oxweave
 KANLIB = ${Kan96xx}/Kan/kanlib.a -L${OpenXM_lib} -lgmp -lgc  KANLIB_SHARED = ${Kan96xx}/Kan/kanlib.a -L${OpenXM_lib} -lgmp -lgc
   KANLIB_STATIC = ${Kan96xx}/Kan/kanlib.a -L${OpenXM_lib} ${OpenXM_lib}/libgmp.a ${OpenXM_lib}/libgc.a -Wl,-no_pie
   KANLIB=@KANLIB@
 #  #
 OpenXM_HOME_for_debug=../..  OpenXM_HOME_for_debug=../..
 OpenXM_bin_for_debug=${OpenXM_HOME_for_debug}/bin  OpenXM_bin_for_debug=${OpenXM_HOME_for_debug}/bin
Line 33  MYSIG=${OpenXM_lib}/mysig.o
Line 35  MYSIG=${OpenXM_lib}/mysig.o
 CC=@CC@  CC=@CC@
 RANLIB=@RANLIB@  RANLIB=@RANLIB@
 LIBS=@LIBS@  LIBS=@LIBS@
 CFLAGS = @CFLAGS@ -g -D_BSD_SOURCE -I${OpenXM_include}  CFLAGS = @CFLAGS@ -g -D_BSD_SOURCE -D_DEFAULT_SOURCE -I${OpenXM_include}
 # University binary is no longer supported. See old configure.in (version 1.7)  # University binary is no longer supported. See old configure.in (version 1.7)
 # Or use "lipo -create ox-i386 ox-ppc -output ox"  # Or use "lipo -create ox-i386 ox-ppc -output ox"
 #STATIC_LINK_FLAG=-static  #STATIC_LINK_FLAG=-static
Line 115  testclient2.o: testclient.c ox_kan.h
Line 117  testclient2.o: testclient.c ox_kan.h
   
 ox_texmacs: ox_texmacs.o ${Kan96xx}/Kan/kanlib.a  ox_texmacs: ox_texmacs.o ${Kan96xx}/Kan/kanlib.a
         ${CC}  ${STATIC_LINK_FLAG} ${CFLAGS} ox_texmacs.o -o ox_texmacs  ${LIBS} ${KANLIB}          ${CC}  ${STATIC_LINK_FLAG} ${CFLAGS} ox_texmacs.o -o ox_texmacs  ${LIBS} ${KANLIB}
   
   sample_kanlib: sample_kanlib.c
           ${CC} -O2 -g -D_BSD_SOURCE -I${OpenXM_include} sample_kanlib.c -o sample_kanlib  -ldl   ../kan96xx/Kan/kanlib.a -L../../lib -lgmp -lgc
   
 clean-done:  clean-done:
         -${RM} -f .configure_done          -${RM} -f .configure_done

Legend:
Removed from v.1.44  
changed lines
  Added in v.1.48

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