[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.38 and 1.42

version 1.38, 2006/10/05 21:14:23 version 1.42, 2015/09/27 05:06:29
Line 1 
Line 1 
 ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.37 2006/10/05 20:44:58 takayama Exp $  ##  $OpenXM: OpenXM/src/kxx/Makefile.in,v 1.41 2010/08/18 07:23:32 ohara 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 32  OpenXM_include_for_debug=${OpenXM_HOME_for_debug}/incl
Line 32  OpenXM_include_for_debug=${OpenXM_HOME_for_debug}/incl
 CC=@CC@  CC=@CC@
 RANLIB=@RANLIB@  RANLIB=@RANLIB@
 LIBS=@LIBS@  LIBS=@LIBS@
 CFLAGS = @CFLAGS@ -g -D_BSD_SOURCE  CFLAGS = @CFLAGS@ -g -D_BSD_SOURCE -I${OpenXM_include}
 CFLAG2 = @CFLAG2@  # University binary is no longer supported. See old configure.in (version 1.7)
 CFLAG2p = @CFLAG2p@  # Or use "lipo -create ox-i386 ox-ppc -output ox"
 #STATIC_LINK_FLAG=-static  #STATIC_LINK_FLAG=-static
 STATIC_LINK_FLAG=  STATIC_LINK_FLAG=
 RM=rm  RM=rm
Line 59  configure-old : Makefile.in configure.in
Line 59  configure-old : Makefile.in configure.in
 #       autoconf  #       autoconf
 #       .error  "Run ./make-configure"  #       .error  "Run ./make-configure"
   
 .c.o:  
         ${CC}  ${CFLAGS} ${CFLAG2} -I${OpenXM_include} -c  $<  
 ox.a: ${Kan96xx}/plugin/ox.a  ox.a: ${Kan96xx}/plugin/ox.a
         /bin/rm -f ox.a          /bin/rm -f ox.a
         ln -s ${Kan96xx}/plugin/ox.a ox.a          ln -s ${Kan96xx}/plugin/ox.a ox.a
Line 69  ox_kan.h: ${Kan96xx}/plugin/ox_kan.h
Line 67  ox_kan.h: ${Kan96xx}/plugin/ox_kan.h
         ln -s ${Kan96xx}/plugin/ox_kan.h ox_kan.h          ln -s ${Kan96xx}/plugin/ox_kan.h ox_kan.h
   
 ox: oxmain.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o  ox: oxmain.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o
         ${CC} ${STATIC_LINK_FLAG} ${CFLAGS} ${CFLAG2p} oxmain.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o -o ox  ${LIBS}          ${CC} ${STATIC_LINK_FLAG} ${CFLAGS} oxmain.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o -o ox  ${LIBS}
 oxmain.o: oxmain.c ox_kan.h serversm.h  oxmain.o: oxmain.c ox_kan.h serversm.h
   
 oxd: oxd.o xtag.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o  oxd: oxd.o xtag.o ${Kan96xx}/plugin/mytcpio.o ${Kan96xx}/plugin/oxmisc.o file2.o
Line 96  ox100start : ox100start.o  ${OpenXM_lib}/libox_pathfin
Line 94  ox100start : ox100start.o  ${OpenXM_lib}/libox_pathfin
 ox100start.o: ox100start.c  ox100start.o: ox100start.c
   
 file2.o: ${Kan96xx}/plugin/file2.c  ${Kan96xx}/plugin/file2.h  file2.o: ${Kan96xx}/plugin/file2.c  ${Kan96xx}/plugin/file2.h
         ${CC} $(CFLAGS) ${CFLAG2} -DKXX=1 -I${Kan96xx}/plugin -c ${Kan96xx}/plugin/file2.c          ${CC} $(CFLAGS) -DKXX=1 -I${Kan96xx}/plugin -c ${Kan96xx}/plugin/file2.c
   
 nullstackmachine.o: nullstackmachine.c ox_kan.h  nullstackmachine.o: nullstackmachine.c ox_kan.h
 sm1stackmachine.o: sm1stackmachine.c  ox_kan.h  sm1stackmachine.o: sm1stackmachine.c  ox_kan.h
Line 149  install-exec: copy-kan-lib install_lib_bin
Line 147  install-exec: copy-kan-lib install_lib_bin
         install ox ox_sm1 oxlog ox100start ox_texmacs ${OpenXM_bin}          install ox ox_sm1 oxlog ox100start ox_texmacs ${OpenXM_bin}
 install_lib_bin:  install_lib_bin:
         if [  "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \          if [  "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \
             make install_lib_bin_windows ; \
           elif [  "`uname | sed -e 's/_.*$$//'`" = "MSYS" ];  then \
           make install_lib_bin_windows ; \            make install_lib_bin_windows ; \
         else \          else \
           make install_lib_bin_unix ; \            make install_lib_bin_unix ; \

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.42

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