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