=================================================================== RCS file: /home/cvs/OpenXM/src/util/Makefile.in,v retrieving revision 1.9 retrieving revision 1.14 diff -u -p -r1.9 -r1.14 --- OpenXM/src/util/Makefile.in 2009/02/24 10:21:52 1.9 +++ OpenXM/src/util/Makefile.in 2020/10/03 08:24:14 1.14 @@ -1,4 +1,4 @@ -# $OpenXM: OpenXM/src/util/Makefile.in,v 1.8 2009/02/22 15:20:17 ohara Exp $ +# $OpenXM: OpenXM/src/util/Makefile.in,v 1.13 2017/03/10 01:32:50 takayama Exp $ #OpenXM_ROOT=../../../OpenXM prefix=@prefix@ exec_prefix=@exec_prefix@ @@ -7,13 +7,13 @@ libdir=@libdir@ includedir=@includedir@ 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@ INSTALL = install -c -BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp -LIB = libox_pathfinder.a +BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf oxlistusage +LIB = libox_pathfinder.a mysig.o all : all-bin all-lib @@ -34,13 +34,22 @@ oxgreph : 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 ar ru libox_pathfinder.a ox_pathfinder.o ${RANLIB} libox_pathfinder.a 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 @@ -55,13 +64,15 @@ 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 install: install-bin install-lib clean: - rm -f .install_*_done *.o ${BIN} ${LIB} test + rm -f .install_*_done *.o ${BIN} ${LIB} test .configure_done