Annotation of OpenXM/bin/Makefile, Revision 1.3
1.3 ! maekawa 1: # $OpenXM: OpenXM/bin/Makefile,v 1.2 2000/01/09 20:24:46 maekawa Exp $
1.1 maekawa 2:
3: LIBDIR=../lib
4:
5: configure:
6: @if [ -f lin_phcv2p.gz.uuencoded ]; then \
1.3 ! maekawa 7: uudecode -p lin_phcv2p.gz.uuencoded | gzip -dc > lin_phcv2p ; \
1.1 maekawa 8: chmod +x lin_phcv2p ; \
9: fi
10:
11: @if [ -f fep.linux.gz.uuencoded ]; then \
1.3 ! maekawa 12: uudecode -p fep.linux.gz.uuencoded | gzip -dc > fep.linux ; \
1.1 maekawa 13: chmod +x fep.linux ; \
14: fi
15:
16: @if [ "`uname`" = "Linux" ]; then \
17: rm -f fep phc ; \
18: ln -f -s fep.linux fep ; \
19: ln -f -s lin_phcv2p phc ; \
20: else \
21: echo "We have the binary of phc only for linux." ; \
22: fi
23:
24: rm -f asir
25: ln -f -s $(LIBDIR)/asir/ox_asir asir
26:
27: distclean:
28: rm -f asir fep fep.linux lin_phcv2p phc
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>