version 1.9, 2000/03/10 14:21:45 |
version 1.12, 2000/03/11 05:44:15 |
|
|
# $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.8 2000/03/10 10:25:21 takayama Exp $ |
# $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.11 2000/03/11 02:01:42 takayama Exp $ |
# This is a Makefile to generate source and binary distributions of |
# This is a Makefile to generate source and binary distributions of |
# the OpenXM package on various plathomes. |
# the OpenXM package on various plathomes. |
|
|
Line 16 RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr |
|
Line 16 RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr |
|
## Configurations. |
## Configurations. |
## OpenXM Version Number. |
## OpenXM Version Number. |
VERSION=1.1.2 |
VERSION=1.1.2 |
|
TAG=HEAD |
|
|
RELEASE= |
RELEASE= |
## If you like to have a release name as a part of tar ball, then uncomment |
## If you like to have a release name as a part of tar ball, then uncomment |
Line 39 WORK=work/openxm-${VERSION} |
|
Line 40 WORK=work/openxm-${VERSION} |
|
|
|
### Common |
### Common |
SHARED_FILES = OpenXM/Copyright OpenXM/doc OpenXM/include OpenXM/man \ |
SHARED_FILES = OpenXM/Copyright OpenXM/doc OpenXM/include OpenXM/man \ |
OpenXM/rc \ |
|
OpenXM/lib/asir-contrib OpenXM/lib/java-support \ |
OpenXM/lib/asir-contrib OpenXM/lib/java-support \ |
OpenXM/lib/k097 OpenXM/lib/math OpenXM/lib/pari \ |
OpenXM/lib/k097 OpenXM/lib/math OpenXM/lib/pari \ |
OpenXM/lib/sm1 OpenXM/lib/asir |
OpenXM/lib/sm1 OpenXM/lib/asir |
BINARY_FILES = OpenXM/bin OpenXM/lib/*.a OpenXM/lib/*.so* OpenXM/lib/*.a.* |
BINARY_FILES = OpenXM/bin OpenXM/lib/*.a OpenXM/lib/*.so* OpenXM/lib/*.a.* \ |
|
OpenXM/rc |
|
|
EXECUTABLES=gnuplot4ox gnuplot_x11 k0 ox ox_sm1 oxlog oxweave sm1 tigers ox_math |
EXECUTABLES=gnuplot4ox gnuplot_x11 k0 ox ox_sm1 oxlog oxweave sm1 tigers ox_math |
|
|
usage : |
usage : |
@echo "Targets are " |
@echo "Targets are " |
@echo " fetch : get the sources from the cvs server under $(WORK)" |
@echo " fetch : get the sources from the cvs server under $(WORK)" |
@echo " tar-ball : generate OpenXM-source.tgz under $(TAR_WORK)" |
@echo " tar-ball : generate openxm-${VERSION}.tar.gz under $(TAR_WORK)" |
@echo " tar-ball-01 : generate OpenXM-source-01.tgz under $(TAR_WORK)" |
@echo " tar-ball-01 : generate openxm01-${VERSION}.tar.gz under $(TAR_WORK)" |
@echo " binary-tar-ball : generate OpenXM-binary-OS-CPU.tgz under $(TAR_WORK)" |
@echo " binary-tar-ball : generate OpenXM-binary-OS-CPU.tgz under $(TAR_WORK)" |
@echo " shared-tar-ball : generate OpenXM-shared.tgz under $(TAR_WORK)" |
@echo " shared-tar-ball : generate OpenXM-shared.tgz under $(TAR_WORK)" |
@echo " clean-work " |
@echo " clean-work " |
Line 132 clean-installed-openxm: |
|
Line 134 clean-installed-openxm: |
|
fetch : |
fetch : |
@if [ ! -f ./.fetch_done ]; then \ |
@if [ ! -f ./.fetch_done ]; then \ |
/bin/rm -rf work ; mkdir work ; mkdir ${WORK} ; \ |
/bin/rm -rf work ; mkdir work ; mkdir ${WORK} ; \ |
( cd ${WORK} ; $(RCVS) export -rHEAD OpenXM OpenXM_contrib OpenXM_contrib2) ; \ |
( cd ${WORK} ; $(RCVS) export -r${TAG} OpenXM OpenXM_contrib OpenXM_contrib2) ; \ |
cp Makefile ${WORK}/Makefile ; \ |
cp Makefile ${WORK}/Makefile ; \ |
fi |
fi |
@touch ./.fetch_done |
@touch ./.fetch_done |
Line 169 shared-tar-ball : tar-ball-01 |
|
Line 171 shared-tar-ball : tar-ball-01 |
|
|
|
clean-work : |
clean-work : |
/bin/rm -rf .*_done *~ |
/bin/rm -rf .*_done *~ |
/bin/rm -rf work |
/bin/rm -rf work work-fake |
|
|
clean-for-make: |
clean-for-make: |
(cd ${WORK} ; make distclean) |
(cd ${WORK} ; make distclean) |