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

Annotation of OpenXM/src/pari/Makefile, Revision 1.3

1.3     ! maekawa     1: # $OpenXM: OpenXM/src/pari/Makefile,v 1.2 2000/01/08 17:56:58 maekawa Exp $
1.1       maekawa     2:
                      3: PARI = ../../../OpenXM_contrib/pari
                      4: CURDIR = ../../OpenXM/src/pari
                      5: BINDIR = ../../bin
                      6:
                      7: all: configure
                      8:        @if [ ! -f ./.make_done ]; then \
                      9:                (cd $(PARI) ; make all) \
                     10:        fi
                     11:        @touch ./.make_done
                     12:
                     13: install: all
1.2       maekawa    14:        @if [ ! -f ./.install_done ]; then \
                     15:                (cd $(PARI) ; make install install-lib-sta) \
                     16:        fi
                     17:        @touch ./.install_done
1.1       maekawa    18:
                     19: clean:
                     20:        @if [ -f ./.make_done ]; then \
                     21:                (cd $(PARI) ; make clean) \
                     22:        fi
1.3     ! maekawa    23:        @rm -f ./.make_done ./.configure_done
        !            24:
        !            25: distclean:
        !            26:        rm -rf ../lib/libpari.* ../lib/pari
        !            27:        rm -rf ../include/pari
        !            28:        rm -rf ../bin/gp ../bin/gp-2.0
        !            29:        @rm -f ./.install_done
1.1       maekawa    30:
                     31: configure:
                     32:        @if [ ! -f ./.configure_done ]; then \
                     33:                (cd $(PARI) ; ./Configure --prefix=../../../OpenXM) \
                     34:        fi
                     35:        @touch ./.configure_done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>