Annotation of OpenXM/src/util/Makefile.in, Revision 1.11
1.11 ! takayama 1: # $OpenXM: OpenXM/src/util/Makefile.in,v 1.10 2013/11/06 00:28:09 takayama Exp $
1.2 takayama 2: #OpenXM_ROOT=../../../OpenXM
1.3 ohara 3: prefix=@prefix@
4: exec_prefix=@exec_prefix@
5: bindir=@bindir@
6: libdir=@libdir@
7: includedir=@includedir@
1.1 takayama 8:
9: CC=@CC@
1.3 ohara 10: CFLAGS=@CFLAGS@ -D_BSD_SOURCE -D_POSIX_C_SOURCE
1.1 takayama 11: RANLIB=@RANLIB@
12:
1.8 ohara 13: INSTALL = install -c
14:
1.11 ! takayama 15: BIN = oxweave oxreplace oxgentexi oxgreph oxhtmlhelp oxlistlocalf
1.8 ohara 16: LIB = libox_pathfinder.a
17:
18: all : all-bin all-lib
19:
20: all-bin: ${BIN}
21: all-lib: ${LIB}
1.1 takayama 22:
1.3 ohara 23: oxweave : oxweave.o
24: ${CC} -o $@ oxweave.o
25:
26: oxreplace : oxreplace.o
27: ${CC} -o $@ oxreplace.o
28:
1.4 takayama 29: oxgentexi : oxgentexi.o
30: ${CC} -o $@ oxgentexi.o
31:
1.5 takayama 32: oxgreph : oxgreph.o
33: ${CC} -o $@ oxgreph.o
34:
1.7 takayama 35: oxhtmlhelp : oxhtmlhelp.o
36: ${CC} -o $@ oxhtmlhelp.o
1.11 ! takayama 37: oxlistlocalf : oxlistlocalf.o
! 38: ${CC} -o $@ oxlistlocalf.o
! 39: oxlistlocalf.o: oxlistlocalf.h
1.7 takayama 40:
1.1 takayama 41: libox_pathfinder.a : ox_pathfinder.o
42: ar ru libox_pathfinder.a ox_pathfinder.o
43: ${RANLIB} libox_pathfinder.a
44:
1.3 ohara 45: ox_pathfinder.o : ox_pathfinder.h
46:
47: test: ox_pathfinder.o test.o
48: ${CC} -o $@ test.o ox_pathfinder.o -L${libdir} -lgc
1.1 takayama 49:
1.8 ohara 50: install-bin: all-bin
51: @if [ ! -f ./.install_bin_done ] ; then \
52: echo "Installing" ${BIN} "oxfetch.sh md5.sh" ; \
1.9 takayama 53: ${INSTALL} lndir.sh oxfetch.sh md5.sh oxsetupdotf.sh ${bindir} ; \
1.8 ohara 54: ${INSTALL} -s ${BIN} ${bindir} ; \
55: ${INSTALL} -s oxweave ${prefix}/src/kxx ; \
56: touch ./.install_bin_done ; \
1.1 takayama 57: fi
58:
1.8 ohara 59: install-lib: all-lib
60: @if [ ! -f ./.install_lib_done ] ; then \
61: echo "Installing libox_pathfinder.a, ox_pathfinder.h" ; \
62: ${INSTALL} libox_pathfinder.a ${libdir} ; \
63: ${INSTALL} ox_pathfinder.h ${includedir} ; \
64: touch ./.install_lib_done ; \
65: fi
66:
67: install: install-bin install-lib
68:
1.1 takayama 69: clean:
1.10 takayama 70: rm -f .install_*_done *.o ${BIN} ${LIB} test .configure_done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>