Enable better build-time flexibility over which WinSock to include
[u/mdw/putty] / Makefile
... / ...
CommitLineData
1# Visual C++ Makefile for PuTTY.
2#
3# Use `nmake' to build.
4#
5
6##-- help
7#
8# Extra options you can set:
9#
10# - FWHACK=/DFWHACK
11# Enables a hack that tunnels through some firewall proxies.
12#
13# - VER=/DSNAPSHOT=1999-01-25
14# Generates executables whose About box report them as being a
15# development snapshot.
16#
17# - VER=/DRELEASE=0.43
18# Generates executables whose About box report them as being a
19# release version.
20#
21# - COMPAT=/DWIN32S_COMPAT
22# Generates a binary that works (minimally) with Win32s.
23#
24# - COMPAT=/DAUTO_WINSOCK
25# Causes PuTTY to assume that <windows.h> includes its own WinSock
26# header file, so that it won't try to include <winsock.h>.
27#
28# - COMPAT=/DWINSOCK_TWO
29# Causes the PuTTY utilities to include <winsock2.h> instead of
30# <winsock.h>, except Plink which _needs_ WinSock 2 so it already
31# does this.
32#
33# - RCFL=/DASCIICTLS
34# Uses ASCII rather than Unicode to specify the tab control in
35# the resource file. Probably most useful when compiling with
36# Cygnus/mingw32, whose resource compiler may have less of a
37# problem with it.
38#
39##--
40
41CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd
42# LFLAGS = /debug
43
44# Use MSVC DLL
45# CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /MD /Fd
46
47# Disable debug and incremental linking
48LFLAGS = /incremental:no
49
50.c.obj:
51 cl $(COMPAT) $(FWHACK) $(CFLAGS) /c $*.c
52
53OBJ=obj
54RES=res
55
56##-- objects putty puttytel
57GOBJS1 = window.$(OBJ) windlg.$(OBJ) terminal.$(OBJ)
58GOBJS2 = xlat.$(OBJ) sizetip.$(OBJ)
59##-- objects putty puttytel plink
60LOBJS1 = telnet.$(OBJ) raw.$(OBJ) ldisc.$(OBJ)
61##-- objects putty plink
62POBJS = be_all.$(OBJ)
63##-- objects puttytel
64TOBJS = be_nossh.$(OBJ)
65##-- objects plink
66PLOBJS = plink.$(OBJ) windlg.$(OBJ)
67##-- objects pscp
68SOBJS = scp.$(OBJ) windlg.$(OBJ) be_none.$(OBJ)
69##-- objects putty puttytel pscp plink
70MOBJS = misc.$(OBJ) version.$(OBJ)
71##-- objects putty pscp plink
72OBJS1 = sshcrc.$(OBJ) sshdes.$(OBJ) sshmd5.$(OBJ) sshrsa.$(OBJ) sshrand.$(OBJ)
73OBJS2 = sshsha.$(OBJ) sshblowf.$(OBJ) noise.$(OBJ) sshdh.$(OBJ) sshdss.$(OBJ)
74OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) ssh.$(OBJ) pageantc.$(OBJ) tree234.$(OBJ)
75##-- objects pageant
76PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ)
77PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ)
78##-- resources putty
79PRESRC = win_res.$(RES)
80##-- resources puttytel
81TRESRC = nosshres.$(RES)
82##-- resources pageant
83PAGERC = pageant.$(RES)
84##-- resources pscp
85SRESRC = scp.$(RES)
86##-- resources plink
87LRESRC = plink.$(RES)
88##--
89
90##-- gui-apps
91# putty
92# puttytel
93# pageant
94##-- console-apps
95# pscp
96# plink
97##--
98
99LIBS1 = advapi32.lib user32.lib gdi32.lib
100LIBS2 = comctl32.lib comdlg32.lib
101LIBS3 = shell32.lib
102SOCK1 = wsock32.lib
103SOCK2 = ws2_32.lib
104
105all: putty.exe puttytel.exe pscp.exe plink.exe pageant.exe
106
107putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(PRESRC) putty.rsp
108 link $(LFLAGS) -out:putty.exe @putty.rsp
109
110puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(TRESRC) puttytel.rsp
111 link $(LFLAGS) -out:puttytel.exe @puttytel.rsp
112
113pageant.exe: $(PAGE1) $(PAGE2) $(PAGERC) pageant.rsp
114 link $(LFLAGS) -out:pageant.exe @pageant.rsp
115
116pscp.exe: $(SOBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(SRESRC) pscp.rsp
117 link $(LFLAGS) -out:pscp.exe @pscp.rsp
118
119plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(LRESRC) plink.rsp
120 link $(LFLAGS) -out:plink.exe @plink.rsp
121
122putty.rsp: makefile
123 echo /nologo /subsystem:windows > putty.rsp
124 echo $(GOBJS1) >> putty.rsp
125 echo $(GOBJS2) >> putty.rsp
126 echo $(LOBJS1) >> putty.rsp
127 echo $(POBJS) >> putty.rsp
128 echo $(MOBJS) >> putty.rsp
129 echo $(OBJS1) >> putty.rsp
130 echo $(OBJS2) >> putty.rsp
131 echo $(OBJS3) >> putty.rsp
132 echo $(PRESRC) >> putty.rsp
133 echo $(LIBS1) >> putty.rsp
134 echo $(LIBS2) >> putty.rsp
135 echo $(SOCK1) >> putty.rsp
136
137puttytel.rsp: makefile
138 echo /nologo /subsystem:windows > puttytel.rsp
139 echo $(GOBJS1) >> puttytel.rsp
140 echo $(GOBJS2) >> puttytel.rsp
141 echo $(LOBJS1) >> puttytel.rsp
142 echo $(TOBJS) >> puttytel.rsp
143 echo $(MOBJS) >> puttytel.rsp
144 echo $(TRESRC) >> puttytel.rsp
145 echo $(LIBS1) >> puttytel.rsp
146 echo $(LIBS2) >> puttytel.rsp
147 echo $(SOCK1) >> puttytel.rsp
148
149pageant.rsp: makefile
150 echo /nologo /subsystem:windows > pageant.rsp
151 echo $(PAGE1) >> pageant.rsp
152 echo $(PAGE2) >> pageant.rsp
153 echo $(PAGERC) >> pageant.rsp
154 echo $(LIBS1) >> pageant.rsp
155 echo $(LIBS2) >> pageant.rsp
156 echo $(LIBS3) >> pageant.rsp
157
158pscp.rsp: makefile
159 echo /nologo /subsystem:console > pscp.rsp
160 echo $(SOBJS) >> pscp.rsp
161 echo $(MOBJS) >> pscp.rsp
162 echo $(OBJS1) >> pscp.rsp
163 echo $(OBJS2) >> pscp.rsp
164 echo $(OBJS3) >> pscp.rsp
165 echo $(SRESRC) >> pscp.rsp
166 echo $(LIBS1) >> pscp.rsp
167 echo $(LIBS2) >> pscp.rsp
168 echo $(SOCK1) >> pscp.rsp
169
170plink.rsp: makefile
171 echo /nologo /subsystem:console > plink.rsp
172 echo $(LOBJS1) >> plink.rsp
173 echo $(POBJS) >> plink.rsp
174 echo $(PLOBJS) >> plink.rsp
175 echo $(MOBJS) >> plink.rsp
176 echo $(OBJS1) >> plink.rsp
177 echo $(OBJS2) >> plink.rsp
178 echo $(OBJS3) >> plink.rsp
179 echo $(LRESRC) >> plink.rsp
180 echo $(LIBS1) >> plink.rsp
181 echo $(LIBS2) >> plink.rsp
182 echo $(SOCK2) >> plink.rsp
183
184##-- dependencies
185window.$(OBJ): window.c putty.h win_res.h
186windlg.$(OBJ): windlg.c putty.h ssh.h win_res.h
187terminal.$(OBJ): terminal.c putty.h
188sizetip.$(OBJ): sizetip.c putty.h
189telnet.$(OBJ): telnet.c putty.h
190raw.$(OBJ): raw.c putty.h
191xlat.$(OBJ): xlat.c putty.h
192ldisc.$(OBJ): ldisc.c putty.h
193misc.$(OBJ): misc.c putty.h
194noise.$(OBJ): noise.c putty.h ssh.h
195ssh.$(OBJ): ssh.c ssh.h putty.h tree234.h
196sshcrc.$(OBJ): sshcrc.c ssh.h
197sshdes.$(OBJ): sshdes.c ssh.h
198sshmd5.$(OBJ): sshmd5.c ssh.h
199sshrsa.$(OBJ): sshrsa.c ssh.h
200sshsha.$(OBJ): sshsha.c ssh.h
201sshrand.$(OBJ): sshrand.c ssh.h
202sshblowf.$(OBJ): sshblowf.c ssh.h
203sshdh.$(OBJ): sshdh.c ssh.h
204sshdss.$(OBJ): sshdss.c ssh.h
205sshbn.$(OBJ): sshbn.c ssh.h
206sshpubk.$(OBJ): sshpubk.c ssh.h
207scp.$(OBJ): scp.c putty.h scp.h
208version.$(OBJ): version.c
209be_all.$(OBJ): be_all.c
210be_nossh.$(OBJ): be_nossh.c
211be_none.$(OBJ): be_none.c
212plink.$(OBJ): plink.c putty.h
213pageant.$(OBJ): pageant.c ssh.h tree234.h
214tree234.$(OBJ): tree234.c tree234.h
215##--
216
217# Hack to force version.obj to be rebuilt always
218version.obj: versionpseudotarget
219 @echo (built version.obj)
220versionpseudotarget:
221 cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
222
223##-- dependencies
224win_res.$(RES): win_res.rc win_res.h putty.ico
225##--
226win_res.$(RES):
227 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
228
229##-- dependencies
230nosshres.$(RES): nosshres.rc win_res.rc win_res.h putty.ico
231##--
232nosshres.$(RES):
233 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 nosshres.rc
234
235##-- dependencies
236scp.$(RES): scp.rc scp.ico
237##--
238scp.$(RES):
239 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
240
241##-- dependencies
242pageant.$(RES): pageant.rc pageant.ico pageants.ico
243##--
244pageant.$(RES):
245 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
246
247clean:
248 del *.obj
249 del *.exe
250 del *.res
251 del *.pch
252 del *.aps
253 del *.ilk
254 del *.pdb
255 del *.rsp
256 del *.dsp
257 del *.dsw
258 del *.ncb
259 del *.opt
260 del *.plg