#!@@MHC_RUBY_PATH@@ -Ke # -*- ruby -*- ## make.rb.in -- Installer for Ruby scripts. ## ## Author: MIYOSHI Masanori ## ## Created: 2000/7/12 ## $LOAD_PATH .unshift('@@MHC_TOPDIR@@') require 'mhc-make' include MhcMake install_files = [ 'adb2mhc:0755:@@MHC_BINDIR@@', 'gemcal:0755:@@MHC_BINDIR@@', 'mhc-sync:0755:@@MHC_BINDIR@@', 'mhc2palm:0755:@@MHC_BINDIR@@', 'palm2mhc:755:@@MHC_BINDIR@@', 'today:0755:@@MHC_BINDIR@@', 'xpm/close.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/delete.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/exit.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/month.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/next.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/next2.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/next_year.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/open.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/prev.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/prev2.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/prev_year.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/save.xpm:0644:@@MHC_XPM_PATH@@', 'xpm/today.xpm:0644:@@MHC_XPM_PATH@@' ] if /cygwin|mingw32/ =~ RUBY_PLATFORM install_files << 'mhc2ol:0755:@@MHC_BINDIR@@' end INSTALL_FILES = install_files doit() ### Copyright Notice: ## Copyright (C) 2000 MHC developing team. All rights reserved. ## Redistribution and use in source and binary forms, with or without ## modification, are permitted provided that the following conditions ## are met: ## ## 1. Redistributions of source code must retain the above copyright ## notice, this list of conditions and the following disclaimer. ## 2. Redistributions in binary form must reproduce the above copyright ## notice, this list of conditions and the following disclaimer in the ## documentation and/or other materials provided with the distribution. ## 3. Neither the name of the team nor the names of its contributors ## may be used to endorse or promote products derived from this software ## without specific prior written permission. ## ## THIS SOFTWARE IS PROVIDED BY THE TEAM AND CONTRIBUTORS ``AS IS'' ## AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ## LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS ## FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL ## THE TEAM OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, ## INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ## (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR ## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ## HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, ## STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ## ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED ## OF THE POSSIBILITY OF SUCH DAMAGE. ### make.rb.in ends here