Annotation of OpenXM/src/util/Makefile, Revision 1.3
1.3 ! ohara 1: # $OpenXM: OpenXM/src/util/Makefile,v 1.2 2002/04/05 01:28:47 takayama Exp $
1.1 takayama 2: OpenXM_ROOT=../../../OpenXM
3: OpenXM_bin=$(OpenXM_ROOT)/bin
4: OpenXM_lib=$(OpenXM_ROOT)/lib
5: CC=gcc
6:
7: all : oxweave
8:
9: oxweave : oxweave.c
10: gcc -D_BSD_SOURCE -o oxweave -g oxweave.c
11:
12:
13: install: all
1.2 takayama 14: if [ "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \
15: cp -f oxweave.exe ${OpenXM_bin} ; \
16: cp -f oxweave.exe ${OpenXM_ROOT}/src/kxx ; \
17: else \
18: cp -f oxweave ${OpenXM_bin} ; \
19: cp -f oxweave ${OpenXM_ROOT}/src/kxx ; \
20: fi
1.3 ! ohara 21: cp -f lndir.sh ${OpenXM_bin}
! 22: chmod 755 ${OpenXM_bin}/lndir.sh
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>