1# Makefile for `wget' utility
2# Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
3# 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3 of the License, or
8# (at your option) any later version.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14
15# You should have received a copy of the GNU General Public License
16# along with Wget.  If not, see <http://www.gnu.org/licenses/>.
17
18# Additional permission under GNU GPL version 3 section 7
19
20# If you modify this program, or any covered work, by linking or
21# combining it with the OpenSSL project's OpenSSL library (or a
22# modified version of that library), containing parts covered by the
23# terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
24# grants you additional permission to convey the resulting work.
25# Corresponding Source for a non-source form of such a combination
26# shall include the source code for the parts of OpenSSL used as well
27# as that of the covered work.
28
29#
30# Version: @VERSION@
31#
32
33if IRI_IS_ENABLED
34IRI_OBJ = iri.c
35endif
36
37# The following line is losing on some versions of make!
38DEFS     = @DEFS@ -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\"
39LIBS     = @LIBSSL@ @LIBGNUTLS@ @LIBICONV@ @LIBINTL@ @LIBS@
40
41bin_PROGRAMS = wget
42wget_SOURCES = cmpt.c connect.c convert.c cookies.c ftp.c    		  \
43	       css.l css-url.c \
44	       ftp-basic.c ftp-ls.c hash.c host.c html-parse.c html-url.c \
45	       http.c init.c log.c main.c netrc.c progress.c ptimer.c     \
46	       recur.c res.c retr.c snprintf.c spider.c url.c	          \
47	       utils.c exits.c build_info.c $(IRI_OBJ)			  \
48	       css-url.h css-tokens.h connect.h convert.h cookies.h       \
49	       ftp.h gen-md5.h hash.h host.h html-parse.h html-url.h      \
50	       http.h http-ntlm.h init.h log.h mswindows.h netrc.h        \
51	       options.h progress.h ptimer.h recur.h res.h retr.h         \
52	       spider.h ssl.h sysdep.h url.h utils.h wget.h iri.h 	  \
53	       exits.h gettext.h
54nodist_wget_SOURCES = version.c
55EXTRA_wget_SOURCES = mswindows.c iri.c
56LDADD = $(LIBOBJS) ../lib/libgnu.a @MD5_LDADD@
57AM_CPPFLAGS = -I$(top_srcdir)/lib @MD5_CPPFLAGS@
58
59../lib/libgnu.a:
60	cd ../lib && $(MAKE) $(AM_MAKEFLAGS)
61
62../md5/libmd5.a:
63	cd ../lib && $(MAKE) $(AM_MAKEFLAGS)
64
65build_info.c: $(srcdir)/Makefile.am $(srcdir)/build_info.c.in
66	$(PERL) $(top_srcdir)/build-aux/build_info.pl \
67	    $(srcdir)/build_info.c.in > $@
68
69ESCAPEQUOTE = sed -e 's/[\\"]/\\&/g' -e 's/\\"/"/' -e 's/\\";$$/";/'
70version.c:  $(wget_SOURCES) $(LDADD) $(srcdir)/Makefile.am \
71    $(top_srcdir)/configure.ac
72	echo '/* version.c */' > $@
73	echo '/* Autogenerated by Makefile - DO NOT EDIT */' >> $@
74	echo '' >> $@
75	echo 'const char *version_string = "@VERSION@"' >> $@
76	echo ';' >> $@
77	echo 'const char *compilation_string = "'$(COMPILE)'";' \
78	    | $(ESCAPEQUOTE) >> $@
79	echo 'const char *link_string = "'$(CCLD) $(AM_CFLAGS) $(CFLAGS) \
80	$(AM_LDFLAGS) $(LDFLAGS) $(LIBS) $(wget_LDADD)'";' \
81	    | $(ESCAPEQUOTE) >> $@
82
83check_LIBRARIES = libunittest.a
84libunittest_a_SOURCES = $(wget_SOURCES) test.c build_info.c test.h
85nodist_libunittest_a_SOURCES = version.c
86libunittest_a_CPPFLAGS = -DTESTING -I$(top_srcdir)/lib
87libunittest_a_LIBADD = $(LIBOBJS)
88EXTRA_DIST = build_info.c.in
89
90CLEANFILES = *~ *.bak core core.[0-9]* build_info.c version.c
91