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

File: [local] / OpenXM / src / pari / Attic / Makefile.2.0 (download)

Revision 1.7, Fri Mar 31 02:50:47 2017 UTC (7 years, 2 months ago) by takayama
Branch: MAIN
Changes since 1.6: +1 -2 lines

Removed ranlib libpari.a

# $OpenXM: OpenXM/src/pari/Makefile.2.0,v 1.7 2017/03/31 02:50:47 takayama Exp $
OpenXM_HOME=../..
PREFIX=${OpenXM_HOME}
DISTDIR=${OpenXM_HOME}/../OpenXM_dist
RM = /bin/rm
RANLIB=ranlib
PARI=pari-2.9.1
PATCH_FILE=${PARI}.diff
MASTER_SITE=http://www.math.kobe-u.ac.jp/pub/OpenXM/misc/
DIST_SUFFIX=.tar.gz
DISTFILES=${PARI}${DIST_SUFFIX}

all: build 

fetch:
	-mkdir work
	@if [ ! -f work/.fetch_done ]; then \
		${OpenXM_HOME}/bin/oxfetch.sh ${MASTER_SITE}${DISTFILES} ${DISTDIR}; \
	fi 
	@touch work/.fetch_done

extract: fetch
	@if [ ! -f work/.extract_done ]; then \
	    cat ${DISTDIR}/${DISTFILES} | (cd work ; tar xzvf -) ; \
	fi 
	@touch work/.extract_done

patch: extract
	@if [ ! -f work/.patch_done ]; then \
	    if [ -f "${PATCH_FILE}" ]; then \
	        cat ${PATCH_FILE} | (cd work/${PARI} ; patch -p1 ) ; \
	    fi \
	fi 
	@touch work/.patch_done

configure: patch
	@if [ ! -f work/.configure_done ]; then \
		prefix=`cd ${OpenXM_HOME}; pwd` ; \
		(cd work/${PARI} ; ./Configure --prefix="$$prefix" ) ; \
	fi
	@touch work/.configure_done

build: configure
	@if [ ! -f work/.build_done ]; then \
		(cd work/${PARI} ; ${MAKE} all) ; \
	fi
	@touch work/.build_done

build-doc: configure
	@if [ ! -f work/.build_doc_done ]; then \
		(cd work/${PARI} ; ${MAKE} doc) ; \
	fi
	@touch work/.build_doc_done

install: build
	-mkdir ${PREFIX}/bin ${PREFIX}/lib
	@if [ ! -f work/.install_done ]; then \
		(cd work/${PARI} ; ${MAKE} install) ; \
	fi
	@touch work/.install_done

install-doc: build-doc
	-mkdir ${PREFIX}/doc/pari
	@if [ ! -f work/.install_doc_done ]; then \
		for i in users.dvi tutorial.dvi; do \
			cp work/${PARI}/doc/$$i ${PREDIX}/doc/pari ; \
		done ; \
	fi
	@touch work/.install_doc_done

clean:
	-${RM} -rf work

distclean: clean