Annotation of OpenXM/src/pari/Makefile, Revision 1.2
1.2 ! maekawa 1: # $OpenXM: OpenXM/src/pari/Makefile,v 1.1 2000/01/08 17:17:50 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.2 ! maekawa 23: @rm -f ./.make_done ./.configure_done ./.install_done
1.1 maekawa 24:
25: configure:
26: @if [ ! -f ./.configure_done ]; then \
27: (cd $(PARI) ; ./Configure --prefix=../../../OpenXM) \
28: fi
29: @touch ./.configure_done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>