## $ID: $ ## ## Copyright (C) 2002, Andrey Kiselev ## ## This program is free software; you can redistribute it and/or modify ## it under the terms of the GNU General Public License as published by ## the Free Software Foundation; either version 2, or (at your option) ## any later version. ## ## This program is distributed in the hope that it will be useful, ## but WITHOUT ANY WARRANTY; without even the implied warranty of ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ## GNU General Public License for more details. ## ## You should have received a copy of the GNU General Public License ## along with this program; if not, write to the Free Software ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, ## USA. ## Process this file with automake to produce Makefile.in. bin_SCRIPTS = hypermap mapview SCRIPT_LIST = admin.layer balloonhelp.tcl calculator.tcl combobox.tcl console.tcl draw.tcl getopt.tcl help.tcl hierarchy.tcl html_library.tcl layer.tcl legend.tcl lesras.lay objects.tcl planchet.tcl progressbar.tcl tabnotebook.tcl tclIndex toolbar.tcl ventry.tcl viewer.tcl widget.tcl EXTRA_DIST = $(bin_SCRIPTS) $(SCRIPT_LIST) install: all install-binaries install-libraries install-binaries: $(mkinstalldirs) $(bindir) -for i in $(bin_SCRIPTS) ; do \ if [ -f $$i ] ; then \ $(INSTALL_PROGRAM) $$i $(bindir)/$$i ; \ else true; fi ; \ done install-libraries: $(mkinstalldirs) $(FGIS_SCRIPTDIR) -for i in $(SCRIPT_LIST) ; do \ if [ -f $$i ] ; then \ $(INSTALL_PROGRAM) -m 644 $$i $(FGIS_SCRIPTDIR)/$$i ; \ else true; fi ; \ done $(mkinstalldirs) $(TCL_PACKAGE_PATH)/fgis if [ -f pkgIndex.tcl ] ; then \ $(INSTALL_PROGRAM) -m 644 pkgIndex.tcl $(TCL_PACKAGE_PATH)/fgis/pkgIndex.tcl ; \ else true; fi uninstall: -for i in $(bin_SCRIPTS) ; do \ rm -f $(bindir)/$$i ; \ done -for i in $(SCRIPT_LIST) ; do \ rm -f $(FGIS_SCRIPTDIR)/$$i ; \ done -rm -f $(TCL_PACKAGE_PATH)/fgis/pkgIndex.tcl