XCOMM XCOMM Imakefile XCOMM XCOMM Copyright (C) 1995, 1996, 1997 Johannes Plass XCOMM XCOMM This program is free software; you can redistribute it and/or modify XCOMM it under the terms of the GNU General Public License as published by XCOMM the Free Software Foundation; either version 2 of the License, or XCOMM (at your option) any later version. XCOMM XCOMM This program is distributed in the hope that it will be useful, XCOMM but WITHOUT ANY WARRANTY; without even the implied warranty of XCOMM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the XCOMM GNU General Public License for more details. XCOMM XCOMM You should have received a copy of the GNU General Public License XCOMM along with this program; if not, write to the Free Software XCOMM Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. XCOMM XCOMM Author: Johannes Plass (plass@thep.physik.uni-mainz.de) XCOMM Department of Physics XCOMM Johannes Gutenberg-University XCOMM Mainz, Germany XCOMM GV_CONFIG_FILE = ../config.Unix #include "../config.Unix" MANDIR=$(GV_MANDIR) ComplexProgramTarget(gv) #ifndef InstallDocFiles #define InstallDocFiles(file,destdir) @@\ install.doc:: @@\ MakeDir($(DESTDIR)destdir) @@\ @(for i in `echo file`; do (set -x;\ @@\ $(INSTALL) $(INSTALLFLAGS) $(INSTMANFLAGS) $$i $(DESTDIR)destdir/$$i);\ @@\ done;) #endif #ifndef InstallDocFile #define InstallDocFile(file,dest,destdir) @@\ install.doc:: @@\ MakeDir($(DESTDIR)destdir) @@\ $(INSTALL) $(INSTALLFLAGS) $(INSTMANFLAGS) file $(DESTDIR)destdir/dest #endif InstallDocFile(gs.interface-gz,gs.interface.gz,$(GV_DOCDIR)) InstallDocFile(gv-faq.txt-gz,gv-faq.txt.gz,$(GV_DOCDIR)) InstallDocFile(key-bindings.txt-gz,key-bindings.txt.gz,$(GV_DOCDIR)) InstallDocFile(comments.doc-gz,comments.doc.gz,$(GV_DOCDIR)) InstallDocFile(gv.ps-gz,gv.ps.gz,$(GV_DOCDIR)) InstallDocFiles(gv*.html,$(GV_DOCDIR))