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

Diff for /OpenXM/src/util/Makefile.in between version 1.11 and 1.12

version 1.11, 2014/03/25 07:08:25 version 1.12, 2016/03/31 05:27:33
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/util/Makefile.in,v 1.10 2013/11/06 00:28:09 takayama Exp $  # $OpenXM: OpenXM/src/util/Makefile.in,v 1.11 2014/03/25 07:08:25 takayama Exp $
 #OpenXM_ROOT=../../../OpenXM  #OpenXM_ROOT=../../../OpenXM
 prefix=@prefix@  prefix=@prefix@
 exec_prefix=@exec_prefix@  exec_prefix=@exec_prefix@
Line 13  RANLIB=@RANLIB@
Line 13  RANLIB=@RANLIB@
 INSTALL = install -c  INSTALL = install -c
   
 BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf  BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf
 LIB = libox_pathfinder.a  LIB = libox_pathfinder.a  mysig.o
   
 all : all-bin all-lib  all : all-bin all-lib
   
Line 44  libox_pathfinder.a : ox_pathfinder.o
Line 44  libox_pathfinder.a : ox_pathfinder.o
   
 ox_pathfinder.o : ox_pathfinder.h  ox_pathfinder.o : ox_pathfinder.h
   
   mysig.o : mysig.c mysig.h
   
 test: ox_pathfinder.o test.o  test: ox_pathfinder.o test.o
         ${CC} -o $@ test.o ox_pathfinder.o -L${libdir} -lgc          ${CC} -o $@ test.o ox_pathfinder.o -L${libdir} -lgc
   
Line 58  install-bin: all-bin
Line 60  install-bin: all-bin
   
 install-lib: all-lib  install-lib: all-lib
         @if [ ! -f ./.install_lib_done ] ; then \          @if [ ! -f ./.install_lib_done ] ; then \
                 echo "Installing libox_pathfinder.a, ox_pathfinder.h" ; \                  echo "Installing libox_pathfinder.a, ox_pathfinder.h mysig.o mysig.h" ; \
                 ${INSTALL} libox_pathfinder.a ${libdir}  ; \                  ${INSTALL} libox_pathfinder.a ${libdir}  ; \
                 ${INSTALL} ox_pathfinder.h ${includedir} ; \                  ${INSTALL} ox_pathfinder.h ${includedir} ; \
                   ${INSTALL} mysig.o ${libdir}  ; \
                   ${INSTALL} mysig.h ${includedir} ; \
                 touch ./.install_lib_done ; \                  touch ./.install_lib_done ; \
         fi          fi
   

Legend:
Removed from v.1.11  
changed lines
  Added in v.1.12

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