[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / bin

Annotation of OpenXM/bin/Makefile, Revision 1.1

1.1     ! maekawa     1: # $OpenXM$
        !             2:
        !             3: LIBDIR=../lib
        !             4:
        !             5: configure:
        !             6:        @if [ -f lin_phcv2p.gz.uuencoded ]; then \
        !             7:                uudecode lin_phcv2p.gz.uuencoded | gzip -d ; \
        !             8:                chmod +x lin_phcv2p ; \
        !             9:        fi
        !            10:
        !            11:        @if [ -f fep.linux.gz.uuencoded ]; then \
        !            12:                uudecode fep.linux.gz.uuencoded | gzip -d ; \
        !            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>