=================================================================== RCS file: /home/cvs/OpenXM/src/util/Makefile.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -p -r1.11 -r1.12 --- OpenXM/src/util/Makefile.in 2014/03/25 07:08:25 1.11 +++ OpenXM/src/util/Makefile.in 2016/03/31 05:27:33 1.12 @@ -1,4 +1,4 @@ -# $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 prefix=@prefix@ exec_prefix=@exec_prefix@ @@ -13,7 +13,7 @@ RANLIB=@RANLIB@ INSTALL = install -c BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf -LIB = libox_pathfinder.a +LIB = libox_pathfinder.a mysig.o all : all-bin all-lib @@ -44,6 +44,8 @@ libox_pathfinder.a : ox_pathfinder.o ox_pathfinder.o : ox_pathfinder.h +mysig.o : mysig.c mysig.h + test: ox_pathfinder.o test.o ${CC} -o $@ test.o ox_pathfinder.o -L${libdir} -lgc @@ -58,9 +60,11 @@ install-bin: all-bin install-lib: all-lib @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} ox_pathfinder.h ${includedir} ; \ + ${INSTALL} mysig.o ${libdir} ; \ + ${INSTALL} mysig.h ${includedir} ; \ touch ./.install_lib_done ; \ fi