]> sjero.net Git - wget/blob - Makefile.am
Moved Makefile.in's to Makefile.am's, applied Ralf's automake patches.
[wget] / Makefile.am
1 # Makefile for `Wget' utility
2 # Copyright (C) 1995, 1996, 1997, 2006, 2007 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 # In addition, as a special exception, the Free Software Foundation
18 # gives permission to link the code of its release of Wget with the
19 # OpenSSL project's "OpenSSL" library (or with modified versions of it
20 # that use the same license as the "OpenSSL" library), and distribute
21 # the linked executables.  You must obey the GNU General Public License
22 # in all respects for all of the code used other than "OpenSSL".  If you
23 # modify this file, you may extend this exception to your version of the
24 # file, but you are not obligated to do so.  If you do not wish to do
25 # so, delete this exception statement from your version.
26
27 #
28 # Version: @VERSION@
29 #
30
31 # Search for macros in the m4 subdirectory:
32 ACLOCAL_AMFLAGS = -I m4
33
34 # These are used for maintenance only, so they are safe without
35 # special autoconf cruft.
36 RM = rm -f
37
38 # subdirectories in the distribution
39 SUBDIRS = src doc po tests util windows
40
41 test: all
42         cd tests && $(MAKE) $(AM_MAKEFLAGS) $@
43
44 EXTRA_DIST = autogen.sh ChangeLog.README configure.bat MAILING-LIST PATCHES \
45              README.checkout
46
47 #
48 # Cleanup dependencies
49 #
50
51 realclean:      realclean-recursive     realclean-top
52
53 CLEANFILES = *~ *.bak $(DISTNAME).tar.gz
54 distclean-local:
55         $(RM) -r autom4te.cache
56
57 realclean-top: distclean-am
58         $(RM) configure
59
60 realclean-recursive:
61         for subdir in $(SUBDIRS); do \
62            target=`echo $@ | sed s/-recursive//`; \
63            (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$target) || exit 1; \
64         done