[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / OpenXM / misc / packages / Generic / openxm

Annotation of OpenXM/misc/packages/Generic/openxm/Makefile, Revision 1.22

1.22    ! takayama    1: # $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.21 2003/02/22 06:32:02 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.22    ! 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.19      takayama   22: PREFIX=/usr/local
1.21      takayama   23: VERSION=1.2.1
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.21      takayama   80:        @echo "A shell script cvs-OpenXM is necessary (write by yourself)"
                     81:        @echo "under your search path."
1.1       takayama   82:
1.18      takayama   83: ### The SECOND part is a Makefile to build binaries from source.
                     84: ### It only calls the Makefile at OpenXM/src.
1.7       takayama   85: ### Start of Makefile  to work in the directory work/openxm-$(VERSION)
                     86: ### Original version is in misc/packages/FreeBSD/openxm-1.1.2
                     87: ### Absolute path should be used for TAR_WORK
                     88:
                     89: usage-of-real-make:
1.18      takayama   90:        @echo "Usage for building OpenXM binaries (main Makefile is at OpenXM/src):"
                     91:        @echo "Targets are "
                     92:        @echo "   configure, all, install, clean, distclean"
                     93:        @echo "You need to specify the PREFIX to install, e.g., make install PREFIX=/usr/local"
1.7       takayama   94:
                     95: configure :
1.8       takayama   96:        @if [ ! -f .configure_done ] ; then \
                     97:                (cd $(srcdir)/OpenXM/src ;      make configure ) ; \
1.7       takayama   98:        fi
                     99:        @touch .configure_done
                    100:
                    101: all : configure
                    102:        @if [ ! -f .all_done ] ; then \
1.8       takayama  103:                (cd $(srcdir)/OpenXM/src ;      make binary-dist) ; \
                    104:        fi
                    105:        @touch .all_done
                    106:
                    107: all-ideal : configure
                    108:        @if [ ! -f .all_done ] ; then \
                    109:                (cd $(srcdir)/OpenXM/src ;      make ;  make install) ; \
1.7       takayama  110:        fi
                    111:        @touch .all_done
                    112:
                    113: install : install-binary-files install-shared-files
1.9       takayama  114:        make install-shell-scripts PREFIX=${prefix}
                    115:
                    116: install-shell-scripts:
1.7       takayama  117: # Install shell scripts to ${prefix}/bin, which is typically /usr/local/bin
                    118:        (cd ${prefix}/OpenXM/rc ; make ; make install PREFIX=${prefix})
                    119:
1.16      takayama  120:
1.7       takayama  121: install-binary-files:  all
                    122:        @echo "install-binary-files with PREFIX= "
                    123:        @echo ${prefix}
                    124:        tar cf - ${BINARY_FILES} | (cd ${prefix} ; tar xf -)
1.8       takayama  125:        (cd ${prefix}/OpenXM/bin ; make clean-for-install)
                    126:        -for i in $(EXECUTABLES); do strip ${prefix}/OpenXM/bin/$$i ; done
1.7       takayama  127:
                    128: install-shared-files:  all
                    129:        @echo "install-binary-files with PREFIX= "
                    130:        @echo ${prefix}
                    131:        tar cf - ${SHARED_FILES} | (cd ${prefix} ; tar xf -)
                    132:
1.16      takayama  133: install-man-pages-for-rpm:
                    134:        -(cd ${prefix}/OpenXM/man/man1 ; cp $(MAN_PAGES) ${PREFIX}/man/man1)
                    135:
1.7       takayama  136: install.man : install
1.16      takayama  137:        -(cd ${prefix}/OpenXM/man/man1 ; cp ${MAN_PAGES} ${MAN_DIR})
1.7       takayama  138:        -gzip ${MAN_DIR}/sm1.1 ${MAN_DIR}/openxm.1
                    139:
                    140: clean :
1.17      takayama  141:        -(cd $(srcdir)/OpenXM/src ; make clean)
1.7       takayama  142:        rm -f .*_done*
                    143:
                    144: distclean :
1.17      takayama  145:        -(cd $(srcdir)/OpenXM/src ; make distclean)
1.7       takayama  146:        rm -f .*_done*
                    147:
                    148: clean-installed-openxm:
                    149:        /bin/rm -rf ${prefix}/OpenXM
                    150:
                    151: ########### end of the real Makefile
                    152:
                    153:
                    154:
1.1       takayama  155: fetch :
                    156:        @if [ ! -f ./.fetch_done ]; then \
1.8       takayama  157:                /bin/rm -rf work ; mkdir work ; mkdir ${WORK} ; \
1.13      takayama  158:                ( cd ${WORK} ; ${RCVS} export -r${TAG} OpenXM OpenXM_contrib OpenXM_contrib2) ; \
1.8       takayama  159:                cp Makefile ${WORK}/Makefile ; \
1.1       takayama  160:        fi
                    161:        @touch ./.fetch_done
                    162:
1.17      takayama  163: build-tar-work:
                    164:        @if [ ! -d ${TAR_WORK} ]; then \
                    165:                mkdir ${TAR_WORK} ; \
                    166:        fi
                    167:
                    168: build-ftp-area:
                    169:        @if [ ! -d ${FTP_AREA} ]; then \
                    170:                mkdir ${FTP_AREA} ; \
                    171:        fi
                    172:
                    173: tar-ball: fetch build-tar-work
                    174:        @if [ ! -f ./.tar-ball_done ]; then \
                    175:                cp Makefile ${WORK}/Makefile ; \
                    176:                (cd ${WORK}/OpenXM/src ; make generate-source-distribution) ; \
                    177:                (cd work ; tar czvf ${TAR_WORK}/openxm-${VERSION}.tar.gz openxm-${VERSION}) ; \
                    178:        fi
                    179:        touch ./.tar-ball_done
1.7       takayama  180:
1.17      takayama  181: tar-ball-01: fetch build-tar-work
1.7       takayama  182:        @if [ ! -f ./.tar-ball-01_done ]; then \
1.8       takayama  183:                cp Makefile ${WORK}/Makefile  ; \
                    184:                (cd ${WORK}/OpenXM/src ; make generate-source-distribution) ; \
                    185:                (cd work ; tar czvf ${TAR_WORK}/openxm01-${VERSION}.tar.gz openxm-${VERSION}/OpenXM openxm-${VERSION}/OpenXM_contrib ) ; \
1.1       takayama  186:        fi
1.7       takayama  187:        @touch ./.tar-ball-01_done
                    188:
1.15      takayama  189: binary-tar-ball : fetch
1.8       takayama  190:        cp Makefile ${WORK}/Makefile
                    191:        rm -rf ${INSTALL_WORK}
                    192:        mkdir ${INSTALL_WORK} ${INSTALL_WORK}/bin ${INSTALL_WORK}/man
                    193:        mkdir ${INSTALL_WORK}/man/man1
                    194:        (cd ${WORK} ; make install-binary-files PREFIX=${INSTALL_WORK})
                    195:        (cd ${INSTALL_WORK} ; tar czf ${TAR_WORK}/OpenXM-binary-$(TYPE)$(RELEASE).tgz ${BINARY_FILES})
                    196:
1.15      takayama  197: shared-tar-ball : fetch
1.8       takayama  198:        cp Makefile ${WORK}/Makefile
                    199:        rm -rf ${INSTALL_WORK}
                    200:        mkdir ${INSTALL_WORK} ${INSTALL_WORK}/bin ${INSTALL_WORK}/man
                    201:        mkdir ${INSTALL_WORK}/man/man1
                    202:        (cd ${WORK} ; make install-shared-files PREFIX=${INSTALL_WORK})
1.13      takayama  203:        (cd ${INSTALL_WORK} ; tar czf ${TAR_WORK}/OpenXM-shared.tgz ${SHARED_FILES})
1.1       takayama  204:
1.17      takayama  205: install-tar-to-ftp-area: build-ftp-area tar-ball
                    206:        cp ${TAR_WORK}/openxm-${VERSION}.tar.gz ${FTP_AREA}
1.1       takayama  207:
1.8       takayama  208: clean-work :
1.3       takayama  209:        /bin/rm -rf .*_done *~
1.11      takayama  210:        /bin/rm -rf work work-fake
1.8       takayama  211:
                    212: clean-for-make:
                    213:        (cd ${WORK} ; make distclean)
                    214:        rm -f .configure_done .all_done

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>