## -*-makefile-*- ## ## $Id: Makefile.am,v 1.2 2004/04/08 01:52:19 mdw Exp $ ## ## Build and install Perl bits of `sw'. ## ## (c) 1999 EBI ## ##----- Licensing notice ---------------------------------------------------- ## ## This file is part of sw-tools. ## ## sw-tools 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 of the License, or ## (at your option) any later version. ## ## sw-tools 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 sw-tools; if not, write to the Free Software Foundation, ## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. AUTOMAKE_OPTIONS = foreign cgidir = ${exec_prefix}/cgi-bin bin_SCRIPTS = sw-tidy cgi_SCRIPTS = sw man_MANS = sw-tidy.1 sw-cgi.1 pkgdata_DATA = \ SW.pm SWConfig.pm SWCGI.pm Info.pm \ SWList.pm SWDoc.pm SWMan.pm SWInfo.pm noinst_DATA = sw.conf EXTRA_DIST = \ sw.conf \ SW.pm SWCGI.pm Info.pm \ SWList.pm SWDoc.pm SWMan.pm SWInfo.pm \ $(man_MANS) install-data-hook: [ -r $(datadir)/sw.conf ] || \ @INSTALL_DATA@ $(srcdir)/sw.conf $(datadir)/sw.conf ##----- That's all, folks ---------------------------------------------------