=================================================================== RCS file: /home/cvs/OpenXM/misc/packages/Generic/openxm/Makefile,v retrieving revision 1.1 retrieving revision 1.5 diff -u -p -r1.1 -r1.5 --- OpenXM/misc/packages/Generic/openxm/Makefile 2000/03/05 02:26:31 1.1 +++ OpenXM/misc/packages/Generic/openxm/Makefile 2000/03/06 08:22:37 1.5 @@ -1,17 +1,28 @@ -# $OpenXM$ +# $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.4 2000/03/06 03:07:19 takayama Exp $ # This is a Makefile to generate source and binary distributions of -# the OpenXM package on various plathome. +# the OpenXM package on various plathomes. -## For committers: prepare mycvs under your search path +## For committers: prepare cvs-OpenXM under your search path ## to access to CVS servers. -RCVS=mycvs -d kerberos.math.kobe-u.ac.jp:/usr/cvs +RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr/cvs +### cvs-OpenXM is the following shell script +## #!/bin/sh +## CVS_RSH=ssh +## export CVS_RSH +## cvs $* + TYPE=`uname -s`-`uname -m` +## OpenXM Version Number. +VERSION=1.1.2 + RELEASE= ## If you like to have a release name as a part of tar ball, then uncomment ## the next line. ##RELEASE=`uname -a` +BINARY_TAR_BALL_FOR_FREE_BSD=./work/OpenXM-binary-FreeBSD-i386.tgz + usage : @echo "Targets are " @echo " fetch : get the sources from the cvs server under work" @@ -32,7 +43,7 @@ fetch : make-tar-ball: fetch (cd work/OpenXM/src ; make generate-source-distribution) - (cd work ; tar czvf OpenXM-source.tgz OpenXM OpenXM_Contrib OpenXM_contrib2 ) + (cd work ; tar czvf OpenXM-source.tgz OpenXM OpenXM_contrib OpenXM_contrib2 ) make-tar-ball-01: fetch @if [ ! -f ./.make-tar-ball-01_done ]; then \ @@ -47,13 +58,13 @@ make-binary-tar-ball : make-tar-ball-01 (cd work/OpenXM/src ; make distclean ) make-binary-tar-ball-using-binary-FreeBSD : - @if [ ! -f ./work/OpenXM-binary-FreeBSD-i386.tgz ]; then \ - echo "Generate work/OpenXM-binary-FreeBSD-i386.tgz first" ; \ + @if [ ! -f $(BINARY_TAR_BALL_FOR_FREE_BSD) ]; then \ + echo "Generate $BINARY_TAR_BALL_FOR_FREE_BSD first" ; \ exit \ fi /bin/rm -rf work/binary-$(TYPE) mkdir work/binary-$(TYPE) - (cd work/binary-$(TYPE) ; tar xzf ../OpenXM-binary-FreeBSD-i386.tgz ) + tar xzf - $(BINARY_TAR_BALL_FOR_FREE_BSD) | (cd work/binary-$(TYPE) ; tar xzf - ) (cd work/binary-$(TYPE) ; /bin/rm -rf OpenXM/bin ) (cd work/OpenXM/src ; make binary-dist ) (cd work ; tar czf - OpenXM/bin OpenXM/lib OpenXM/rc ) | (cd work/binary-$(TYPE) ; tar xzf - ) @@ -61,5 +72,5 @@ make-binary-tar-ball-using-binary-FreeBSD : (cd work/OpenXM/src ; make distclean ) clean : - /bin/rm -rf .*_done + /bin/rm -rf .*_done *~ /bin/rm -rf work