Annotation of OpenXM/src/util/Makefile.in, Revision 1.7
1.7 ! takayama 1: # $OpenXM: OpenXM/src/util/Makefile.in,v 1.6 2006/10/13 11:51:25 ohara 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.7 ! takayama 13: all : oxweave oxreplace oxgentexi oxgreph libox_pathfinder.a oxhtmlhelp
1.1 takayama 14:
1.3 ohara 15: oxweave : oxweave.o
16: ${CC} -o $@ oxweave.o
17:
18: oxreplace : oxreplace.o
19: ${CC} -o $@ oxreplace.o
20:
1.4 takayama 21: oxgentexi : oxgentexi.o
22: ${CC} -o $@ oxgentexi.o
23:
1.5 takayama 24: oxgreph : oxgreph.o
25: ${CC} -o $@ oxgreph.o
26:
1.7 ! takayama 27: oxhtmlhelp : oxhtmlhelp.o
! 28: ${CC} -o $@ oxhtmlhelp.o
! 29:
1.1 takayama 30: libox_pathfinder.a : ox_pathfinder.o
31: ar ru libox_pathfinder.a ox_pathfinder.o
32: ${RANLIB} libox_pathfinder.a
33:
1.3 ohara 34: ox_pathfinder.o : ox_pathfinder.h
35:
36: test: ox_pathfinder.o test.o
37: ${CC} -o $@ test.o ox_pathfinder.o -L${libdir} -lgc
1.1 takayama 38:
39: install: all
40: @if [ ! -f ./.install_done ] ; then \
1.7 ! takayama 41: echo "Installing oxweave, oxreplace, oxgentexi, oxgreph, oxhtmlhelp libox_pathfinder.a, ox_pathfinder.h oxfetch.sh md5.sh" ; \
1.6 ohara 42: install -c lndir.sh oxfetch.sh md5.sh ${bindir} ; \
1.7 ! takayama 43: install -c -s oxweave oxreplace oxgentexi oxgreph oxhtmlhelp ${bindir} ; \
1.3 ohara 44: install -c -s oxweave ${prefix}/src/kxx ; \
45: install -c libox_pathfinder.a ${libdir} ; \
46: install -c ox_pathfinder.h ${includedir} ; \
1.1 takayama 47: touch ./.install_done ; \
48: fi
49:
50: clean:
1.5 takayama 51: rm -f .install_done *.o oxweave oxreplace oxgentexi libox_pathfinder.a test oxgreph
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>