| version 1.8, 2009/02/22 15:20:17 | 
version 1.14, 2020/10/03 08:24:14 | 
 | 
 | 
|  # $OpenXM: OpenXM/src/util/Makefile.in,v 1.7 2009/02/22 08:16:43 takayama Exp $ | 
 # $OpenXM: OpenXM/src/util/Makefile.in,v 1.13 2017/03/10 01:32:50 takayama Exp $ | 
|  #OpenXM_ROOT=../../../OpenXM | 
 #OpenXM_ROOT=../../../OpenXM | 
|  prefix=@prefix@ | 
 prefix=@prefix@ | 
|  exec_prefix=@exec_prefix@ | 
 exec_prefix=@exec_prefix@ | 
 | 
 | 
|  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 | 
 BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf oxlistusage | 
|  LIB = libox_pathfinder.a | 
 LIB = libox_pathfinder.a  mysig.o | 
|   | 
  | 
|  all : all-bin all-lib | 
 all : all-bin all-lib | 
|   | 
  | 
| Line 34  oxgreph : oxgreph.o | 
 
  | 
| Line 34  oxgreph : oxgreph.o | 
 
 
 | 
|   | 
  | 
|  oxhtmlhelp : oxhtmlhelp.o | 
 oxhtmlhelp : oxhtmlhelp.o | 
|          ${CC} -o $@ oxhtmlhelp.o | 
         ${CC} -o $@ oxhtmlhelp.o | 
|   | 
 oxlistlocalf : oxlistlocalf.o | 
|   | 
         ${CC} -o $@ oxlistlocalf.o | 
|   | 
 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 | 
|   | 
  | 
|  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 | 
|   | 
  | 
|  install-bin: all-bin | 
 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 ${bindir} ; \ | 
                 ${INSTALL} lndir.sh oxfetch.sh md5.sh oxsetupdotf.sh ${bindir} ; \ | 
|                  ${INSTALL} -s ${BIN} ${bindir} ; \ | 
                 ${INSTALL} -s ${BIN} ${bindir} ; \ | 
|                  ${INSTALL} -s oxweave ${prefix}/src/kxx ; \ | 
                 ${INSTALL} -s oxweave ${prefix}/src/kxx ; \ | 
|                  touch ./.install_bin_done ; \ | 
                 touch ./.install_bin_done ; \ | 
| Line 55  install-bin: all-bin | 
 
  | 
| Line 64  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 | 
|   | 
  | 
|  install: install-bin install-lib | 
 install: install-bin install-lib | 
|   | 
  | 
|  clean: | 
 clean: | 
|          rm -f .install_*_done *.o ${BIN} ${LIB} test | 
         rm -f .install_*_done *.o ${BIN} ${LIB} test .configure_done |