]> sjero.net Git - wget/blob - src/Makefile.in
[svn] Removed libtool and switched to config.rpath to perform configuration-time...
[wget] / src / Makefile.in
1 # Makefile for `wget' utility
2 # Copyright (C) 1995, 1996, 1997 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 2 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, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 # In addition, as a special exception, the Free Software Foundation
19 # gives permission to link the code of its release of Wget with the
20 # OpenSSL project's "OpenSSL" library (or with modified versions of it
21 # that use the same license as the "OpenSSL" library), and distribute
22 # the linked executables.  You must obey the GNU General Public License
23 # in all respects for all of the code used other than "OpenSSL".  If you
24 # modify this file, you may extend this exception to your version of the
25 # file, but you are not obligated to do so.  If you do not wish to do
26 # so, delete this exception statement from your version.
27
28 #
29 # Version: @VERSION@
30 #
31
32 SHELL = /bin/sh
33
34 top_builddir = ..
35
36 top_srcdir = @top_srcdir@
37 srcdir     = @srcdir@
38 VPATH      = @srcdir@
39
40 prefix       = @prefix@
41 exec_prefix  = @exec_prefix@
42 bindir       = @bindir@
43 sysconfdir   = @sysconfdir@
44 localedir    = $(prefix)/share/locale
45
46 DESTDIR      =
47
48 CC       = @CC@
49 CPPFLAGS = @CPPFLAGS@
50 # The following line is losing on some versions of make!
51 DEFS     = @DEFS@ -DSYSTEM_WGETRC=\"$(sysconfdir)/wgetrc\" -DLOCALEDIR=\"$(localedir)\"
52 CFLAGS   = @CFLAGS@
53 LDFLAGS  = @LDFLAGS@ 
54 LIBS     = @LIBS@ @LIBSSL@
55 exeext   = @exeext@
56
57 #INCLUDES = -I. -I$(srcdir) @SSL_INCLUDES@
58 INCLUDES = -I. -I$(srcdir)
59
60 COMPILE = $(CC) $(INCLUDES) $(CPPFLAGS)  $(DEFS) $(CFLAGS)
61 LINK    = $(CC) $(CFLAGS) $(LDFLAGS) -o $@
62 INSTALL = @INSTALL@
63 INSTALL_PROGRAM = @INSTALL_PROGRAM@
64 RM = rm -f
65 ETAGS = etags
66
67 # Conditional compiles
68 ALLOCA     = @ALLOCA@
69 MD5_OBJ    = @MD5_OBJ@
70 OPIE_OBJ   = @OPIE_OBJ@
71 NTLM_OBJ   = @NTLM_OBJ@
72 SSL_OBJ    = @SSL_OBJ@
73 GETOPT_OBJ = @GETOPT_OBJ@
74
75 OBJ = $(ALLOCA) cmpt.o connect.o convert.o cookies.o              \
76       ftp.o ftp-basic.o ftp-ls.o $(OPIE_OBJ) $(GETOPT_OBJ) hash.o \
77       host.o html-parse.o html-url.o http.o $(NTLM_OBJ) init.o    \
78       log.o main.o $(MD5_OBJ) netrc.o progress.o ptimer.o recur.o \
79       res.o retr.o safe-ctype.o snprintf.o $(SSL_OBJ) url.o       \
80       utils.o version.o xmalloc.o
81
82 .SUFFIXES:
83 .SUFFIXES: .c .o
84
85 .c.o:
86         $(COMPILE) -c $<
87
88 # Dependencies for building
89
90 wget$(exeext): $(OBJ)
91         $(LINK) $(OBJ) $(LIBS)
92
93 # We make object files depend on every header.  Rather than attempt to
94 # track dependencies, everything gets recompiled when a header
95 # changes.  With a program of Wget's size this doesn't waste much
96 # time, and it's a lot safer than attempting to get all the
97 # dependencies right.
98
99 $(OBJ): config-post.h config.h connect.h convert.h cookies.h ftp.h   \
100         gen-md5.h getopt.h gnu-md5.h hash.h host.h html-parse.h      \
101         http-ntlm.h init.h log.h mswindows.h netrc.h options.h       \
102         progress.h ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h  \
103         sysdep.h url.h utils.h wget.h xmalloc.h
104
105 #
106 # Dependencies for installing
107 #
108
109 install: install.bin
110
111 uninstall: uninstall.bin
112
113 install.bin: wget$(exeext)
114         $(top_srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
115         $(INSTALL_PROGRAM) wget$(exeext) $(DESTDIR)$(bindir)/wget$(exeext)
116
117 uninstall.bin:
118         $(RM) $(DESTDIR)$(bindir)/wget$(exeext)
119
120 #
121 # Dependencies for cleanup
122 #
123
124 clean:
125         $(RM) *.o wget$(exeext) *~ *.bak core core.[0-9]*
126         $(RM) -r .libs
127
128 distclean: clean
129         $(RM) Makefile config.h
130
131 realclean: distclean
132         $(RM) TAGS config.h.in
133
134 #
135 # Dependencies for maintenance
136 #
137
138 subdir = src
139
140 Makefile: Makefile.in ../config.status
141         cd .. && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= ./config.status
142
143 TAGS: *.c *.h
144         -$(ETAGS) *.c *.h