[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.3 and 1.4

version 1.3, 2004/12/14 17:39:20 version 1.4, 2005/04/04 12:38:32
Line 1 
Line 1 
 # $OpenXM: OpenXM/src/util/Makefile.in,v 1.2 2004/06/23 22:49:17 takayama Exp $  # $OpenXM: OpenXM/src/util/Makefile.in,v 1.3 2004/12/14 17:39:20 ohara Exp $
 #OpenXM_ROOT=../../../OpenXM  #OpenXM_ROOT=../../../OpenXM
 prefix=@prefix@  prefix=@prefix@
 exec_prefix=@exec_prefix@  exec_prefix=@exec_prefix@
Line 10  CC=@CC@
Line 10  CC=@CC@
 CFLAGS=@CFLAGS@ -D_BSD_SOURCE -D_POSIX_C_SOURCE  CFLAGS=@CFLAGS@ -D_BSD_SOURCE -D_POSIX_C_SOURCE
 RANLIB=@RANLIB@  RANLIB=@RANLIB@
   
 all : oxweave oxreplace libox_pathfinder.a  all : oxweave oxreplace oxgentexi libox_pathfinder.a
   
 oxweave : oxweave.o  oxweave : oxweave.o
         ${CC} -o $@ oxweave.o          ${CC} -o $@ oxweave.o
Line 18  oxweave : oxweave.o
Line 18  oxweave : oxweave.o
 oxreplace : oxreplace.o  oxreplace : oxreplace.o
         ${CC} -o $@ oxreplace.o          ${CC} -o $@ oxreplace.o
   
   oxgentexi : oxgentexi.o
           ${CC} -o $@ oxgentexi.o
   
 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 29  test: ox_pathfinder.o test.o
Line 32  test: ox_pathfinder.o test.o
   
 install: all  install: all
         @if [ ! -f ./.install_done ] ; then \          @if [ ! -f ./.install_done ] ; then \
         echo "Installing oxweave, oxreplace, libox_pathfinder.a, ox_pathfinder.h oxfetch.sh" ; \          echo "Installing oxweave, oxreplace, oxgentexi libox_pathfinder.a, ox_pathfinder.h oxfetch.sh" ; \
         install -c lndir.sh oxfetch.sh ${bindir} ; \          install -c lndir.sh oxfetch.sh ${bindir} ; \
         install -c -s oxweave oxreplace ${bindir} ; \          install -c -s oxweave oxreplace oxgentexi ${bindir} ; \
         install -c -s oxweave ${prefix}/src/kxx ; \          install -c -s oxweave ${prefix}/src/kxx ; \
         install -c libox_pathfinder.a ${libdir}  ; \          install -c libox_pathfinder.a ${libdir}  ; \
         install -c ox_pathfinder.h ${includedir} ; \          install -c ox_pathfinder.h ${includedir} ; \
Line 39  install: all
Line 42  install: all
         fi          fi
   
 clean:  clean:
         rm -f .install_done *.o oxweave oxreplace libox_pathfinder.a test          rm -f .install_done *.o oxweave oxreplace oxgentexi libox_pathfinder.a test

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

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