]> sjero.net Git - wget/blob - windows/Makefile.src
[svn] Define WGET_USE_STDARG in windows/config.h.bor.
[wget] / windows / Makefile.src
1 # Makefile for `wget' utility for MSVC 4.0
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: 1.4.4
30 #
31
32 #Comment these if you don't have openssl available - however https
33 #won't work.
34 SSLDEFS =       /DHAVE_SSL
35 SSLLIBS =       libeay32.lib ssleay32.lib
36 SSLSRC  =       gen_sslfunc.c
37 SSLOBJ  =       gen_sslfunc$o
38
39 SHELL = command
40
41 VPATH       = .
42 o           = .obj
43 OUTDIR      = .
44
45 CC       = cl
46 LD       = link
47
48 CFLAGS   = /nologo /MT /W0 /O2
49 #DEBUGCF  = /DDEBUG /Zi /Od #/Fd /FR
50 CPPFLAGS = 
51 DEFS     = /DWINDOWS /D_CONSOLE /DHAVE_CONFIG_H /DSYSTEM_WGETRC=\"wgetrc\"
52 LDFLAGS  = /subsystem:console /incremental:no /warn:3
53 #DEBUGLF  = /pdb:wget.pdb /debug /debugtype:cv /map:wget.map /opt:noref
54 LIBS     = kernel32.lib advapi32.lib wsock32.lib user32.lib
55
56 INCLUDES = /I.
57
58 COMPILE = $(CC) $(INCLUDES) $(CPPFLAGS) $(DEBUGCF) $(DEFS) $(SSLDEFS) $(CFLAGS)
59 LINK    = $(LD) $(LDFLAGS) $(DEBUGLF) /out:$@
60
61 #INSTALL = @INSTALL@
62 #INSTALL_PROGRAM = @INSTALL_PROGRAM@
63
64 RM      = del
65
66 SRC = cmpt.c safe-ctype.c connect.c host.c http.c netrc.c ftp-basic.c ftp.c \
67       ftp-ls.c ftp-opie.c getopt.c hash.c headers.c html-parse.c html-url.c \
68       progress.c retr.c recur.c res.c url.c cookies.c init.c utils.c main.c \
69       version.c mswindows.c fnmatch.c gen-md5.c gnu-md5.c rbuf.c log.c $(SSLSRC)
70
71 OBJ = cmpt$o safe-ctype$o connect$o host$o http$o netrc$o ftp-basic$o ftp$o \
72       ftp-ls$o ftp-opie$o getopt$o hash$o headers$o html-parse$o html-url$o \
73       progress$o retr$o recur$o res$o url$o cookies$o init$o utils$o main$o \
74       version$o mswindows$o fnmatch$o gen-md5$o gnu-md5$o rbuf$o log$o $(SSLOBJ)
75
76 .SUFFIXES: .c .obj
77
78 .c.obj:
79         $(COMPILE) /c $<
80
81 # Dependencies for building
82
83 wget: wget.exe
84
85 wget.exe: $(OBJ)
86          $(LD) @<< $(LDFLAGS) $(DEBUGLF) /out:$@ $(LIBS) $(SSLLIBS) $(OBJ)
87 <<
88         ren wget.exe WGET.EXE
89
90
91 #
92 # Dependencies for cleanup
93 #
94
95 clean:
96         $(RM) *.obj
97         $(RM) *.exe
98         $(RM) *.bak
99         $(RM) *.pdb
100         $(RM) *.map
101         $(RM) config.h
102
103 distclean: clean
104         $(RM) Makefile
105
106 realclean: distclean
107         $(RM) TAGS
108
109 # Dependencies:
110
111 !include "..\windows\wget.dep"