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