Annotation of OpenXM/misc/packages/Generic/openxm/Makefile, Revision 1.9
1.9 ! takayama 1: # $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.8 2000/03/10 10:25:21 takayama Exp $
1.1 takayama 2: # This is a Makefile to generate source and binary distributions of
1.3 takayama 3: # the OpenXM package on various plathomes.
1.1 takayama 4:
1.8 takayama 5: # If you add new directory under OpenXM/lib, edit SHARED_FILES.
6:
1.4 takayama 7: ## For committers: prepare cvs-OpenXM under your search path
1.1 takayama 8: ## to access to CVS servers.
1.4 takayama 9: RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr/cvs
10: ### cvs-OpenXM is the following shell script
11: ## #!/bin/sh
12: ## CVS_RSH=ssh
13: ## export CVS_RSH
14: ## cvs $*
15:
1.7 takayama 16: ## Configurations.
1.3 takayama 17: ## OpenXM Version Number.
18: VERSION=1.1.2
19:
1.1 takayama 20: RELEASE=
21: ## If you like to have a release name as a part of tar ball, then uncomment
22: ## the next line.
23: ##RELEASE=`uname -a`
24:
1.7 takayama 25: TYPE=`uname -s`-`uname -m`
26:
1.8 takayama 27: OpenXM_HOME=$(HOME)/OpenXM
28: TAR_WORK=$(HOME)/tmp
29: #TAR_WORK=${OpenXM_HOME}/misc/packages/Generic/openxm/work
30: INSTALL_WORK=${OpenXM_HOME}/misc/packages/Generic/openxm/work/openxm-install-dir
31:
32: ### Variables for the real Makefile
33: ### Variables should be set before the first target.
34: srcdir = .
35: prefix=${PREFIX}
36: MAN_DIR=${prefix}/man/man1
37: WORK=work/openxm-${VERSION}
38: ### End of variables for the real Makefile
39:
1.7 takayama 40: ### Common
41: SHARED_FILES = OpenXM/Copyright OpenXM/doc OpenXM/include OpenXM/man \
42: OpenXM/rc \
43: OpenXM/lib/asir-contrib OpenXM/lib/java-support \
44: OpenXM/lib/k097 OpenXM/lib/math OpenXM/lib/pari \
45: OpenXM/lib/sm1 OpenXM/lib/asir
1.9 ! takayama 46: BINARY_FILES = OpenXM/bin OpenXM/lib/*.a OpenXM/lib/*.so* OpenXM/lib/*.a.*
1.8 takayama 47: EXECUTABLES=gnuplot4ox gnuplot_x11 k0 ox ox_sm1 oxlog oxweave sm1 tigers ox_math
1.2 takayama 48:
1.1 takayama 49: usage :
50: @echo "Targets are "
1.8 takayama 51: @echo " fetch : get the sources from the cvs server under $(WORK)"
52: @echo " tar-ball : generate OpenXM-source.tgz under $(TAR_WORK)"
53: @echo " tar-ball-01 : generate OpenXM-source-01.tgz under $(TAR_WORK)"
54: @echo " binary-tar-ball : generate OpenXM-binary-OS-CPU.tgz under $(TAR_WORK)"
55: @echo " shared-tar-ball : generate OpenXM-shared.tgz under $(TAR_WORK)"
56: @echo " clean-work "
57: @echo " clean-for-make "
1.1 takayama 58: @echo -n "Type is "
59: @echo $(TYPE)
1.8 takayama 60: @echo -n "INSTALL_WORK is "
61: @echo $(INSTALL_WORK)
62: @echo -n "TAR_WORK is "
63: @echo $(TAR_WORK)
64: @echo " "
1.1 takayama 65:
1.7 takayama 66: ### Start of Makefile to work in the directory work/openxm-$(VERSION)
67: ### It does not work here.
68: ### Original version is in misc/packages/FreeBSD/openxm-1.1.2
69: ### Absolute path should be used for TAR_WORK
70:
71: usage-of-real-make:
72: @echo "Targets are all, install, clean, distclean"
73: @echo "You need to specify the PREFIX to install,"
74: @echo "e.g., make install PREFIX=/usr/local"
75:
76: configure :
1.8 takayama 77: @if [ ! -f .configure_done ] ; then \
78: (cd $(srcdir)/OpenXM/src ; make configure ) ; \
1.7 takayama 79: fi
80: @touch .configure_done
81:
82: all : configure
83: @if [ ! -f .all_done ] ; then \
1.8 takayama 84: (cd $(srcdir)/OpenXM/src ; make binary-dist) ; \
85: fi
86: @touch .all_done
87:
88: all-ideal : configure
89: @if [ ! -f .all_done ] ; then \
90: (cd $(srcdir)/OpenXM/src ; make ; make install) ; \
1.7 takayama 91: fi
92: @touch .all_done
93:
94: install : install-binary-files install-shared-files
1.9 ! takayama 95: make install-shell-scripts PREFIX=${prefix}
! 96:
! 97: install-shell-scripts:
1.7 takayama 98: # Install shell scripts to ${prefix}/bin, which is typically /usr/local/bin
99: (cd ${prefix}/OpenXM/rc ; make ; make install PREFIX=${prefix})
100:
101: install-binary-files: all
102: @echo "install-binary-files with PREFIX= "
103: @echo ${prefix}
104: tar cf - ${BINARY_FILES} | (cd ${prefix} ; tar xf -)
1.8 takayama 105: (cd ${prefix}/OpenXM/bin ; make clean-for-install)
106: -for i in $(EXECUTABLES); do strip ${prefix}/OpenXM/bin/$$i ; done
1.7 takayama 107:
108: install-shared-files: all
109: @echo "install-binary-files with PREFIX= "
110: @echo ${prefix}
111: tar cf - ${SHARED_FILES} | (cd ${prefix} ; tar xf -)
112:
113: install.man : install
114: -cp ${prefix}/OpenXM/man/man1/sm1.1 ${prefix}/OpenXM/man/man1/openxm.1 ${MAN_DIR}
115: -gzip ${MAN_DIR}/sm1.1 ${MAN_DIR}/openxm.1
116:
117: clean :
118: cd $(srcdir)/OpenXM/src ; make clean
119: rm -f .*_done*
120:
121: distclean :
122: cd $(srcdir)/OpenXM/src ; make distclean
123: rm -f .*_done*
124:
125: clean-installed-openxm:
126: /bin/rm -rf ${prefix}/OpenXM
127:
128: ########### end of the real Makefile
129:
130:
131:
1.1 takayama 132: fetch :
133: @if [ ! -f ./.fetch_done ]; then \
1.8 takayama 134: /bin/rm -rf work ; mkdir work ; mkdir ${WORK} ; \
135: ( cd ${WORK} ; $(RCVS) export -rHEAD OpenXM OpenXM_contrib OpenXM_contrib2) ; \
136: cp Makefile ${WORK}/Makefile ; \
1.1 takayama 137: fi
138: @touch ./.fetch_done
139:
1.7 takayama 140: tar-ball: fetch
1.8 takayama 141: cp Makefile ${WORK}/Makefile
142: (cd ${WORK}/OpenXM/src ; make generate-source-distribution)
143: (cd work ; tar czvf ${TAR_WORK}/openxm-${VERSION}.tar.gz openxm-${VERSION})
1.7 takayama 144:
145: tar-ball-01: fetch
146: @if [ ! -f ./.tar-ball-01_done ]; then \
1.8 takayama 147: cp Makefile ${WORK}/Makefile ; \
148: (cd ${WORK}/OpenXM/src ; make generate-source-distribution) ; \
149: (cd work ; tar czvf ${TAR_WORK}/openxm01-${VERSION}.tar.gz openxm-${VERSION}/OpenXM openxm-${VERSION}/OpenXM_contrib ) ; \
1.1 takayama 150: fi
1.7 takayama 151: @touch ./.tar-ball-01_done
152:
153: binary-tar-ball : tar-ball-01
1.8 takayama 154: cp Makefile ${WORK}/Makefile
155: rm -rf ${INSTALL_WORK}
156: mkdir ${INSTALL_WORK} ${INSTALL_WORK}/bin ${INSTALL_WORK}/man
157: mkdir ${INSTALL_WORK}/man/man1
158: (cd ${WORK} ; make install-binary-files PREFIX=${INSTALL_WORK})
159: (cd ${INSTALL_WORK} ; tar czf ${TAR_WORK}/OpenXM-binary-$(TYPE)$(RELEASE).tgz ${BINARY_FILES})
160:
161: shared-tar-ball : tar-ball-01
162: cp Makefile ${WORK}/Makefile
163: rm -rf ${INSTALL_WORK}
164: mkdir ${INSTALL_WORK} ${INSTALL_WORK}/bin ${INSTALL_WORK}/man
165: mkdir ${INSTALL_WORK}/man/man1
166: (cd ${WORK} ; make install-shared-files PREFIX=${INSTALL_WORK})
167: (cd ${INSTALL_WORK} ; tar czf ${TAR_WORK}/OpenXM-shared-$(TYPE)$(RELEASE).tgz ${SHARED_FILES})
1.1 takayama 168:
169:
1.8 takayama 170: clean-work :
1.3 takayama 171: /bin/rm -rf .*_done *~
1.1 takayama 172: /bin/rm -rf work
1.8 takayama 173:
174: clean-for-make:
175: (cd ${WORK} ; make distclean)
176: rm -f .configure_done .all_done
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>