[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.12 and 1.15

version 1.12, 2016/03/31 05:27:33 version 1.15, 2021/03/24 14:32:48
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/util/Makefile.in,v 1.11 2014/03/25 07:08:25 takayama Exp $  # $OpenXM: OpenXM/src/util/Makefile.in,v 1.14 2020/10/03 08:24:14 takayama Exp $
 #OpenXM_ROOT=../../../OpenXM  #OpenXM_ROOT=../../../OpenXM
 prefix=@prefix@  prefix=@prefix@
 exec_prefix=@exec_prefix@  exec_prefix=@exec_prefix@
Line 7  libdir=@libdir@
Line 7  libdir=@libdir@
 includedir=@includedir@  includedir=@includedir@
   
 CC=@CC@  CC=@CC@
 CFLAGS=@CFLAGS@ -D_BSD_SOURCE -D_POSIX_C_SOURCE  CFLAGS=@CFLAGS@ -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE
 RANLIB=@RANLIB@  RANLIB=@RANLIB@
   
 INSTALL = install -c  INSTALL = install -c
   
 BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf  BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf oxlistusage
 LIB = libox_pathfinder.a  mysig.o  LIB = libox_pathfinder.a  mysig.o
   
 all : all-bin all-lib  all : all-bin all-lib
Line 36  oxhtmlhelp : oxhtmlhelp.o
Line 36  oxhtmlhelp : oxhtmlhelp.o
         ${CC} -o $@ oxhtmlhelp.o          ${CC} -o $@ oxhtmlhelp.o
 oxlistlocalf : oxlistlocalf.o  oxlistlocalf : oxlistlocalf.o
         ${CC} -o $@ oxlistlocalf.o          ${CC} -o $@ oxlistlocalf.o
 oxlistlocalf.o: oxlistlocalf.h  oxlistlocalf.o: oxlistlocalf.h oxlistlocalf.c
   
   oxlistusage : oxlistusage.o
           ${CC} -o $@ oxlistusage.o
   oxlistusage.o: oxlistlocalf.h oxlistusage.c
   
 libox_pathfinder.a : ox_pathfinder.o  libox_pathfinder.a : ox_pathfinder.o
         ar ru libox_pathfinder.a ox_pathfinder.o          ar ru libox_pathfinder.a ox_pathfinder.o
         ${RANLIB} libox_pathfinder.a          ${RANLIB} libox_pathfinder.a
Line 53  install-bin: all-bin
Line 57  install-bin: all-bin
         @if [ ! -f ./.install_bin_done ] ; then \          @if [ ! -f ./.install_bin_done ] ; then \
                 echo "Installing" ${BIN} "oxfetch.sh md5.sh" ; \                  echo "Installing" ${BIN} "oxfetch.sh md5.sh" ; \
                 ${INSTALL} lndir.sh oxfetch.sh md5.sh oxsetupdotf.sh ${bindir} ; \                  ${INSTALL} lndir.sh oxfetch.sh md5.sh oxsetupdotf.sh ${bindir} ; \
                 ${INSTALL} -s ${BIN} ${bindir} ; \                  ${INSTALL} ${BIN} ${bindir} ; \
                 ${INSTALL} -s oxweave ${prefix}/src/kxx ; \                  ${INSTALL} oxweave ${prefix}/src/kxx ; \
                 touch ./.install_bin_done ; \                  touch ./.install_bin_done ; \
         fi          fi
   

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

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