| version 1.5, 2003/07/21 11:36:10 |
version 1.14, 2004/01/30 20:48:34 |
|
|
| # $OpenXM: OpenXM/src/util/Makefile,v 1.4 2003/03/26 04:45:37 takayama Exp $ |
# $OpenXM: OpenXM/src/util/Makefile,v 1.13 2003/12/01 11:21:09 takayama Exp $ |
| OpenXM_ROOT=../../../OpenXM |
OpenXM_ROOT=../../../OpenXM |
| OpenXM_bin=$(OpenXM_ROOT)/bin |
OpenXM_bin=$(OpenXM_ROOT)/bin |
| OpenXM_lib=$(OpenXM_ROOT)/lib |
OpenXM_lib=$(OpenXM_ROOT)/lib |
| Line 9 all : oxweave oxreplace libox_pathfinder.a |
|
| Line 9 all : oxweave oxreplace libox_pathfinder.a |
|
| |
|
| oxweave : oxweave.c |
oxweave : oxweave.c |
| gcc -D_BSD_SOURCE -o oxweave -g oxweave.c |
gcc -D_BSD_SOURCE -o oxweave -g oxweave.c |
| |
rm -f .install_done |
| oxreplace : oxreplace.c |
oxreplace : oxreplace.c |
| gcc -D_BSD_SOURCE -o oxreplace -g oxreplace.c |
gcc -D_BSD_SOURCE -o oxreplace -g oxreplace.c |
| |
rm -f .install_done |
| libox_pathfinder.a : ox_pathfinder.o |
libox_pathfinder.a : ox_pathfinder.o |
| ar ru libox_pathfinder.a ox_pathfinder.o |
ar ru libox_pathfinder.a ox_pathfinder.o |
| |
rm -f .install_done |
| ox_pathfinder.o : ox_pathfinder.c ox_pathfinder.h |
ox_pathfinder.o : ox_pathfinder.c ox_pathfinder.h |
| $(CC) -c ox_pathfinder.c |
$(CC) -D_BSD_SOURCE -D_POSIX_C_SOURCE -c ox_pathfinder.c |
| |
|
| |
test: ox_pathfinder.o test.c |
| |
$(CC) -o test -D_BSD_SOURCE -D_POSIX_C_SOURCE test.c ox_pathfinder.o -L${OpenXM_lib} -lgc |
| |
|
| install: all |
install: all |
| @if [ ! -f ./.install_done ] ; then \ |
@if [ ! -f ./.install_done ] ; then \ |
| echo "Installing oxweave, oxreplace, libox_pathfinder.a, ox_pathfinder.h" ; \ |
echo "Installing oxweave, oxreplace, libox_pathfinder.a, ox_pathfinder.h oxfetch.sh" ; \ |
| if [ "`uname | sed -e 's/_.*$$//'`" = "CYGWIN" ]; then \ |
install -c -s oxweave oxreplace ${OpenXM_bin} ; \ |
| cp -f oxweave.exe ${OpenXM_bin} ; \ |
install -c -s oxweave ${OpenXM_ROOT}/src/kxx ; \ |
| cp -f oxweave.exe ${OpenXM_ROOT}/src/kxx ; \ |
|
| cp -f oxreplace.exe ${OpenXM_bin} ; \ |
|
| else \ |
|
| cp -f oxweave ${OpenXM_bin} ; \ |
|
| cp -f oxweave ${OpenXM_ROOT}/src/kxx ; \ |
|
| cp -f oxreplace ${OpenXM_bin} ; \ |
|
| fi ; \ |
|
| cp -f libox_pathfinder.a ${OpenXM_lib} ; \ |
cp -f libox_pathfinder.a ${OpenXM_lib} ; \ |
| cp -f ox_pathfinder.h ${OpenXM_include} ; \ |
cp -f ox_pathfinder.h ${OpenXM_include} ; \ |
| cp -f lndir.sh ${OpenXM_bin} ; \ |
install -c lndir.sh ${OpenXM_bin} ; \ |
| chmod 755 ${OpenXM_bin}/lndir.sh ; \ |
install -c oxfetch.sh ${OpenXM_bin} ; \ |
| touch ./.install_done ; \ |
touch ./.install_done ; \ |
| fi |
fi |
| |
|
| clean: |
clean: |
| rm -f .install_done *.o oxweave oxreplace libox_pathfinder.a |
|
| |
|
| |
rm -f .install_done *.o oxweave oxreplace libox_pathfinder.a test |