################################################################ ### ### Makefile ### ### Author: Internet Message Group ### Created: Apr 23, 1997 ### Revised: Feb 28, 2000 ### SHELL= /bin/sh INSTALL=@INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ chmod= @im_path_chmod@ mkdir= @im_path_mkdir@ rm= @im_path_rm@ mv= @im_path_mv@ sed= @im_path_sed@ prefix= @prefix@ exec_prefix=@exec_prefix@ # --bindir bindir=@bindir@ # --libdir libdir=@libdir@ # --with-perldir perldir=@im_path_siteperl@ # If you modify imlibdir, you should also modify IM/Config. imlibdir= $(libdir)/im moddir= $(perldir)/IM RPOP= @im_rpop@ PROG = imali imcat imcd imclean imgrep imhist imhsync imjoin imls immv \ impack impath imput impwagent imrm imsetup imsort imstore \ imtar immknmz ALLPROG = $(PROG) imget all: @echo everything has been done by configure. @echo you only need to do "make install". install:: installbin installdata installbin:: [ -d $(bindir) ] || \ ($(mkdir) -p $(bindir) && $(chmod) 755 $(bindir)) for f in $(PROG); do \ $(sed) -e '/###DELETE-ON-INSTALL###/d' $${f} > $${f}.tmp ; \ $(INSTALL) -m 555 $${f}.tmp $(bindir)/$${f} ; \ $(rm) -f $${f}.tmp ; \ done $(sed) -e '/###DELETE-ON-INSTALL###/d' imget > imget.tmp $(INSTALL) $(RPOP) imget.tmp $(bindir)/imget $(rm) -f imget.tmp installdata:: [ -d $(moddir) ] || $(mkdir) -p $(moddir) $(chmod) 755 $(moddir) for f in IM/*.pm; do \ $(INSTALL_DATA) $${f} $(moddir) ; \ done [ -d $(imlibdir) ] || $(mkdir) -p $(imlibdir) $(chmod) 755 $(imlibdir) for cnf_im in SiteConfig ; do \ if test ! -f $(imlibdir)/$$cnf_im; then \ $(INSTALL_DATA) cnf.im/$$cnf_im $(imlibdir); \ else \ $(INSTALL_DATA) cnf.im/$$cnf_im $(imlibdir)/$$cnf_im.new; \ fi ;\ done clean:: $(rm) -f $(ALLPROG) $(rm) -f cnf.im/SiteConfig $(rm) -f IM/Config.pm distclean:: clean $(rm) -f Makefile config.log config.status config.cache ### Copyright (C) 1997, 1998, 1999 IM 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.