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