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

version 1.2, 2004/06/23 22:49:17 version 1.15, 2021/03/24 14:32:48
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/util/Makefile.in,v 1.1 2004/06/14 09:07:32 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
 OpenXM_ROOT=@prefix@  prefix=@prefix@
 OpenXM_bin=$(OpenXM_ROOT)/bin  exec_prefix=@exec_prefix@
 OpenXM_lib=$(OpenXM_ROOT)/lib  bindir=@bindir@
 OpenXM_include=$(OpenXM_ROOT)/include  libdir=@libdir@
   includedir=@includedir@
   
 CC=@CC@  CC=@CC@
   CFLAGS=@CFLAGS@ -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE
 RANLIB=@RANLIB@  RANLIB=@RANLIB@
   
 all : oxweave oxreplace libox_pathfinder.a  INSTALL = install -c
   
 oxweave : oxweave.c  BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf oxlistusage
         ${CC}    -D_BSD_SOURCE -o oxweave -g oxweave.c  LIB = libox_pathfinder.a  mysig.o
         rm -f .install_done  
 oxreplace : oxreplace.c  all : all-bin all-lib
         ${CC}    -D_BSD_SOURCE -o oxreplace -g oxreplace.c  
         rm -f .install_done  all-bin: ${BIN}
   all-lib: ${LIB}
   
   oxweave : oxweave.o
           ${CC} -o $@ oxweave.o
   
   oxreplace : oxreplace.o
           ${CC} -o $@ oxreplace.o
   
   oxgentexi : oxgentexi.o
           ${CC} -o $@ oxgentexi.o
   
   oxgreph : oxgreph.o
           ${CC} -o $@ oxgreph.o
   
   oxhtmlhelp : 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
         rm -f .install_done  
 ox_pathfinder.o : ox_pathfinder.c ox_pathfinder.h  
         ${CC} -D_BSD_SOURCE -D_POSIX_C_SOURCE -c ox_pathfinder.c  
   
 test: ox_pathfinder.o test.c  ox_pathfinder.o : ox_pathfinder.h
         ${CC} -o test -D_BSD_SOURCE -D_POSIX_C_SOURCE test.c ox_pathfinder.o -L${OpenXM_lib} -lgc  
   
 install: all  mysig.o : mysig.c mysig.h
         @if [ ! -f ./.install_done ] ; then \  
         echo "Installing oxweave, oxreplace, libox_pathfinder.a, ox_pathfinder.h oxfetch.sh" ; \  test: ox_pathfinder.o test.o
         install -c -s oxweave oxreplace ${OpenXM_bin} ; \          ${CC} -o $@ test.o ox_pathfinder.o -L${libdir} -lgc
         install -c -s oxweave ${OpenXM_ROOT}/src/kxx ; \  
         cp -f libox_pathfinder.a ${OpenXM_lib}  ; \  install-bin: all-bin
         cp -f ox_pathfinder.h ${OpenXM_include} ; \          @if [ ! -f ./.install_bin_done ] ; then \
         install -c lndir.sh ${OpenXM_bin} ; \                  echo "Installing" ${BIN} "oxfetch.sh md5.sh" ; \
         install -c oxfetch.sh ${OpenXM_bin} ; \                  ${INSTALL} lndir.sh oxfetch.sh md5.sh oxsetupdotf.sh ${bindir} ; \
         touch ./.install_done ; \                  ${INSTALL} ${BIN} ${bindir} ; \
                   ${INSTALL} oxweave ${prefix}/src/kxx ; \
                   touch ./.install_bin_done ; \
         fi          fi
   
   install-lib: all-lib
           @if [ ! -f ./.install_lib_done ] ; then \
                   echo "Installing libox_pathfinder.a, ox_pathfinder.h mysig.o mysig.h" ; \
                   ${INSTALL} libox_pathfinder.a ${libdir}  ; \
                   ${INSTALL} ox_pathfinder.h ${includedir} ; \
                   ${INSTALL} mysig.o ${libdir}  ; \
                   ${INSTALL} mysig.h ${includedir} ; \
                   touch ./.install_lib_done ; \
           fi
   
   install: install-bin install-lib
   
 clean:  clean:
         rm -f .install_done *.o oxweave oxreplace libox_pathfinder.a test          rm -f .install_*_done *.o ${BIN} ${LIB} test .configure_done

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

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