wget/Makefile.am

65 lines
2.3 KiB
Makefile
Raw Normal View History

# Makefile for `Wget' utility
2010-05-08 15:56:15 -04:00
# Copyright (C) 1995, 1996, 1997, 2006, 2007, 2008, 2009, 2010 Free
# Software Foundation, Inc.
2000-12-09 20:55:43 -05:00
# 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 3 of the License, or
2000-12-09 20:55:43 -05:00
# (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, see <http://www.gnu.org/licenses/>.
2000-12-09 20:55:43 -05:00
# Additional permission under GNU GPL version 3 section 7
# If you modify this program, or any covered work, by linking or
# combining it with the OpenSSL project's OpenSSL library (or a
# modified version of that library), containing parts covered by the
# terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
# grants you additional permission to convey the resulting work.
# Corresponding Source for a non-source form of such a combination
# shall include the source code for the parts of OpenSSL used as well
# as that of the covered work.
2000-12-09 20:55:43 -05:00
#
# Version: @VERSION@
#
2009-09-08 00:10:05 -04:00
# We can't help that installing wget.info leaves /usr/share/info/dir
# around, and we need to prevent uninstallation of the possibly
# previously-existing /etc/wgetrc.
distuninstallcheck_listfiles = find . -type f | \
grep -Ev '(/share/info/dir|/etc/wgetrc)$$'
# Search for macros in the m4 subdirectory:
2010-05-15 19:34:17 -04:00
ACLOCAL_AMFLAGS = -I m4
2000-12-09 20:55:43 -05:00
# subdirectories in the distribution
2010-06-17 17:08:23 -04:00
SUBDIRS = lib src doc po tests util
2010-08-08 07:18:48 -04:00
EXTRA_DIST = ChangeLog.README MAILING-LIST \
2009-06-14 04:41:44 -04:00
msdos/ChangeLog msdos/config.h msdos/Makefile.DJ \
2010-05-07 06:28:26 -04:00
msdos/Makefile.WC ABOUT-NLS \
build-aux/build_info.pl .version
2000-12-09 20:55:43 -05:00
CLEANFILES = *~ *.bak $(DISTNAME).tar.gz
BUILT_SOURCES = .version
clean-generic:
rm -f install-info
.version:
echo $(VERSION) > $@-t && mv $@-t $@
# Arrange so that .tarball-version appears only in the distribution
# tarball, and never in a checked-out repository.
dist-hook:
$(AM_V_GEN)echo $(VERSION) > $(distdir)/.tarball-version