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

Diff for /OpenXM/misc/packages/Generic/openxm/Makefile between version 1.16 and 1.22

version 1.16, 2000/03/16 10:07:04 version 1.22, 2004/02/22 09:17:11
Line 1 
Line 1 
 # $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.15 2000/03/13 02:41:37 takayama Exp $  # $OpenXM: OpenXM/misc/packages/Generic/openxm/Makefile,v 1.21 2003/02/22 06:32:02 takayama Exp $
 # This is a Makefile to generate source and binary distributions of  # The FIRST part is a Makefile FOR COMMITTERS: it is used
 # the OpenXM package on various plathomes.  # to generate source and binary distributions of
   # the OpenXM package on various operating systems.
   
 # If you add new directory under OpenXM/lib, edit SHARED_FILES.  # If you add new directory under OpenXM/lib, edit SHARED_FILES.
   
Line 10 
Line 11 
 ## For committers: prepare cvs-OpenXM under your search path  ## For committers: prepare cvs-OpenXM under your search path
 ## to access to CVS servers.  ## to access to CVS servers.
 RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr/cvs  RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr/cvs
 ### cvs-OpenXM is the following shell script  ### cvs-OpenXM is the following shell script in my case.
 ## #!/bin/sh  ## #!/bin/sh
 ## CVS_RSH=ssh  ## CVS_RSH=ssh
 ## export CVS_RSH  ## export CVS_RSH
Line 18  RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr
Line 19  RCVS=cvs-OpenXM -d kerberos.math.sci.kobe-u.ac.jp:/usr
   
 ## Configurations.  ## Configurations.
 ## OpenXM Version Number.  ## OpenXM Version Number.
 VERSION=1.1.2  PREFIX=/usr/local
   VERSION=1.2.1
 TAG=HEAD  TAG=HEAD
   FTP_AREA=/export/home01/ftp/pub/OpenXM/${VERSION}
   
 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 52  MAN_PAGES    = openxm.1 sm1.1
Line 55  MAN_PAGES    = openxm.1 sm1.1
   
 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 : usage-of-real-make
           @echo "--------------------------------------------------"
           @echo "Usage for building distributions (for COMMITTERS):"
         @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-${VERSION}.tar.gz under $(TAR_WORK)"          @echo "  tar-ball : generate openxm-${VERSION}.tar.gz under $(TAR_WORK)"
         @echo "  tar-ball-01 : generate openxm01-${VERSION}.tar.gz 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  "  install-tar-to-ftp-area : copy openxm-${VERSION}.tar.gz to ${FTP_AREA}"
         @echo "  clean-work "          @echo "  clean-work "
         @echo "  clean-for-make "          @echo "  clean-for-make "
           @echo "--------------------------------------------------"
         @echo -n "Type is "          @echo -n "Type is "
         @echo $(TYPE)          @echo $(TYPE)
         @echo -n "INSTALL_WORK is "          @echo -n "INSTALL_WORK is "
         @echo  $(INSTALL_WORK)          @echo  $(INSTALL_WORK)
         @echo -n "TAR_WORK is "          @echo -n "TAR_WORK is "
         @echo  $(TAR_WORK)          @echo  $(TAR_WORK)
           @echo -n "FTP_AREA is "
           @echo  $(FTP_AREA)
         @echo " "          @echo " "
           @echo "A shell script cvs-OpenXM is necessary (write by yourself)"
           @echo "under your search path."
   
   ### The SECOND part is a Makefile to build binaries from source.
   ### It only calls the Makefile at OpenXM/src.
 ### Start of Makefile  to work in the directory work/openxm-$(VERSION)  ### Start of Makefile  to work in the directory work/openxm-$(VERSION)
 ### It does not work here.  
 ### Original version is in misc/packages/FreeBSD/openxm-1.1.2  ### Original version is in misc/packages/FreeBSD/openxm-1.1.2
 ### Absolute path should be used for TAR_WORK  ### Absolute path should be used for TAR_WORK
   
 usage-of-real-make:  usage-of-real-make:
         @echo "Targets are all, install, clean, distclean"          @echo "Usage for building OpenXM binaries (main Makefile is at OpenXM/src):"
         @echo "You need to specify the PREFIX to install,"          @echo "Targets are "
         @echo "e.g., make install PREFIX=/usr/local"          @echo "   configure, all, install, clean, distclean"
           @echo "You need to specify the PREFIX to install, e.g., make install PREFIX=/usr/local"
   
 configure :  configure :
         @if [ ! -f .configure_done ] ; then \          @if [ ! -f .configure_done ] ; then \
Line 125  install.man : install
Line 138  install.man : install
         -gzip ${MAN_DIR}/sm1.1 ${MAN_DIR}/openxm.1          -gzip ${MAN_DIR}/sm1.1 ${MAN_DIR}/openxm.1
   
 clean :  clean :
         cd $(srcdir)/OpenXM/src ; make clean          -(cd $(srcdir)/OpenXM/src ; make clean)
         rm -f .*_done*          rm -f .*_done*
   
 distclean :  distclean :
         cd $(srcdir)/OpenXM/src ; make distclean          -(cd $(srcdir)/OpenXM/src ; make distclean)
         rm -f .*_done*          rm -f .*_done*
   
 clean-installed-openxm:  clean-installed-openxm:
Line 147  fetch :
Line 160  fetch :
         fi          fi
         @touch ./.fetch_done          @touch ./.fetch_done
   
 tar-ball: fetch  build-tar-work:
         cp Makefile ${WORK}/Makefile          @if [ ! -d ${TAR_WORK} ]; then \
         (cd ${WORK}/OpenXM/src ; make generate-source-distribution)                  mkdir ${TAR_WORK} ; \
         (cd work ; tar czvf ${TAR_WORK}/openxm-${VERSION}.tar.gz openxm-${VERSION})          fi
   
 tar-ball-01: fetch  build-ftp-area:
           @if [ ! -d ${FTP_AREA} ]; then \
                   mkdir ${FTP_AREA} ; \
           fi
   
   tar-ball: fetch build-tar-work
           @if [ ! -f ./.tar-ball_done ]; then \
                   cp Makefile ${WORK}/Makefile ; \
                   (cd ${WORK}/OpenXM/src ; make generate-source-distribution) ; \
                   (cd work ; tar czvf ${TAR_WORK}/openxm-${VERSION}.tar.gz openxm-${VERSION}) ; \
           fi
           touch ./.tar-ball_done
   
   tar-ball-01: fetch build-tar-work
         @if [ ! -f ./.tar-ball-01_done ]; then \          @if [ ! -f ./.tar-ball-01_done ]; then \
                 cp Makefile ${WORK}/Makefile  ; \                  cp Makefile ${WORK}/Makefile  ; \
                 (cd ${WORK}/OpenXM/src ; make generate-source-distribution) ; \                  (cd ${WORK}/OpenXM/src ; make generate-source-distribution) ; \
Line 176  shared-tar-ball : fetch
Line 202  shared-tar-ball : fetch
         (cd ${WORK} ; make install-shared-files PREFIX=${INSTALL_WORK})          (cd ${WORK} ; make install-shared-files PREFIX=${INSTALL_WORK})
         (cd ${INSTALL_WORK} ; tar czf ${TAR_WORK}/OpenXM-shared.tgz ${SHARED_FILES})          (cd ${INSTALL_WORK} ; tar czf ${TAR_WORK}/OpenXM-shared.tgz ${SHARED_FILES})
   
   install-tar-to-ftp-area: build-ftp-area tar-ball
           cp ${TAR_WORK}/openxm-${VERSION}.tar.gz ${FTP_AREA}
   
 clean-work :  clean-work :
         /bin/rm -rf .*_done *~          /bin/rm -rf .*_done *~

Legend:
Removed from v.1.16  
changed lines
  Added in v.1.22

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