More upgrades to psftp: it now supports mv, chmod, reget and reput.
[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=/DAUTO_WINSOCK
22# Causes PuTTY to assume that <windows.h> includes its own WinSock
23# header file, so that it won't try to include <winsock.h>.
24#
25# - COMPAT=/DWINSOCK_TWO
26# Causes the PuTTY utilities to include <winsock2.h> instead of
27# <winsock.h>, except Plink which _needs_ WinSock 2 so it already
28# does this.
29#
30# - COMPAT=/DNO_SECURITY
31# Disables Pageant's use of <aclapi.h>, which is not available
32# with some development environments. This means that Pageant
33# won't care about the local user ID of processes accessing it; a
34# version of Pageant built with this option will therefore refuse
35# to run under NT-series OSes on security grounds (although it
36# will run fine on Win95-series OSes where there is no access
37# control anyway).
38#
39# - RCFL=/DASCIICTLS
40# Uses ASCII rather than Unicode to specify the tab control in
41# the resource file. Probably most useful when compiling with
42# Cygnus/mingw32, whose resource compiler may have less of a
43# problem with it.
44#
45# - XFLAGS=/DDEBUG
46# Causes PuTTY to enable internal debugging.
47#
48# - XFLAGS=/DMALLOC_LOG
49# Causes PuTTY to emit a file called putty_mem.log, logging every
50# memory allocation and free, so you can track memory leaks.
51#
52# - XFLAGS=/DMINEFIELD
53# Causes PuTTY to use a custom memory allocator, similar in
54# concept to Electric Fence, in place of regular malloc(). Wastes
55# huge amounts of RAM, but should cause heap-corruption bugs to
56# show up as GPFs at the point of failure rather than appearing
57# later on as second-level damage.
58#
59##--
60
61# Enable debug and incremental linking and compiling
62# CFLAGS = /nologo /W3 /YX /Yd /O1 /Gi /D_WINDOWS /DDEBUG /D_WIN32_WINDOWS=0x401
63# LFLAGS = /debug
64
65# Disable debug and incremental linking and compiling
66CFLAGS = /nologo /W3 /O1 /D_WINDOWS /D_WIN32_WINDOWS=0x401
67LFLAGS = /incremental:no /fixed
68
69# Use MSVC DLL
70# CFLAGS = /nologo /W3 /O1 /MD /D_WINDOWS /D_WIN32_WINDOWS=0x401
71# LFLAGS = /incremental:no
72
73.c.obj:
74 cl $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) /c $*.c
75
76OBJ=obj
77RES=res
78
79##-- objects putty puttytel
80GOBJS1 = window.$(OBJ) windlg.$(OBJ) winctrls.$(OBJ) terminal.$(OBJ)
81GOBJS2 = sizetip.$(OBJ) wcwidth.$(OBJ) unicode.$(OBJ)
82##-- objects putty puttytel plink
83LOBJS1 = telnet.$(OBJ) raw.$(OBJ) rlogin.$(OBJ) ldisc.$(OBJ) winnet.$(OBJ)
84##-- objects putty plink
85POBJS = be_all.$(OBJ)
86##-- objects puttytel
87TOBJS = be_nossh.$(OBJ)
88##-- objects plink
89PLOBJS = plink.$(OBJ)
90##-- objects pscp
91SOBJS = scp.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
92##-- objects psftp
93FOBJS = psftp.$(OBJ) sftp.$(OBJ) int64.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
94##-- objects putty puttytel pscp psftp plink
95MOBJS = misc.$(OBJ) version.$(OBJ) winstore.$(OBJ) settings.$(OBJ)
96MOBJ2 = tree234.$(OBJ)
97##-- objects putty pscp psftp plink
98OBJS1 = sshcrc.$(OBJ) sshdes.$(OBJ) sshmd5.$(OBJ) sshrsa.$(OBJ) sshrand.$(OBJ)
99OBJS2 = sshsha.$(OBJ) sshblowf.$(OBJ) noise.$(OBJ) sshdh.$(OBJ) sshdss.$(OBJ)
100OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) ssh.$(OBJ) pageantc.$(OBJ) sshzlib.$(OBJ)
101OBJS4 = x11fwd.$(OBJ) portfwd.$(OBJ) sshaes.$(OBJ)
102##-- objects pageant
103PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ)
104PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ) misc.$(OBJ) sshaes.$(OBJ)
105PAGE3 = sshsha.$(OBJ) pageantc.$(OBJ)
106##-- objects puttygen
107GEN1 = puttygen.$(OBJ) sshrsag.$(OBJ) sshprime.$(OBJ) sshdes.$(OBJ)
108GEN2 = sshbn.$(OBJ) sshmd5.$(OBJ) version.$(OBJ) sshrand.$(OBJ) noise.$(OBJ)
109GEN3 = sshsha.$(OBJ) winstore.$(OBJ) misc.$(OBJ) winctrls.$(OBJ)
110GEN4 = sshrsa.$(OBJ) sshpubk.$(OBJ) sshaes.$(OBJ)
111##-- resources putty puttytel
112PRESRC = win_res.$(RES)
113##-- resources pageant
114PAGERC = pageant.$(RES)
115##-- resources puttygen
116GENRC = puttygen.$(RES)
117##-- resources pscp psftp
118SRESRC = scp.$(RES)
119##-- resources plink
120LRESRC = plink.$(RES)
121##--
122
123##-- gui-apps
124# putty
125# puttytel
126# pageant
127# puttygen
128##-- console-apps
129# pscp
130# psftp
131# plink ws2_32
132##--
133
134LIBS1 = advapi32.lib user32.lib gdi32.lib
135LIBS2 = comctl32.lib comdlg32.lib
136LIBS3 = shell32.lib winmm.lib imm32.lib
137SOCK1 = wsock32.lib
138SOCK2 = ws2_32.lib
139
140all: putty.exe puttytel.exe pscp.exe psftp.exe \
141 plink.exe pageant.exe puttygen.exe
142
143putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(PRESRC) putty.rsp
144 link $(LFLAGS) -out:putty.exe -map:putty.map @putty.rsp
145
146puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(MOBJ2) $(PRESRC) puttytel.rsp
147 link $(LFLAGS) -out:puttytel.exe -map:puttytel.map @puttytel.rsp
148
149pageant.exe: $(PAGE1) $(PAGE2) $(PAGE3) $(PAGERC) pageant.rsp
150 link $(LFLAGS) -out:pageant.exe -map:pageant.map @pageant.rsp
151
152puttygen.exe: $(GEN1) $(GEN2) $(GEN3) $(GEN4) $(GENRC) puttygen.rsp
153 link $(LFLAGS) -out:puttygen.exe -map:puttygen.map @puttygen.rsp
154
155pscp.exe: $(SOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) pscp.rsp
156 link $(LFLAGS) -out:pscp.exe -map:pscp.map @pscp.rsp
157
158psftp.exe: $(FOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) psftp.rsp
159 link $(LFLAGS) -out:psftp.exe -map:psftp.map @psftp.rsp
160
161plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(LRESRC) plink.rsp
162 link $(LFLAGS) -out:plink.exe -map:plink.map @plink.rsp
163
164ssh.obj:
165 cl $(FWHACK) $(VER) $(CFLAGS) /Gi- /c ssh.c
166
167putty.rsp: makefile
168 echo /nologo /subsystem:windows > putty.rsp
169 echo $(GOBJS1) >> putty.rsp
170 echo $(GOBJS2) >> putty.rsp
171 echo $(LOBJS1) >> putty.rsp
172 echo $(POBJS) >> putty.rsp
173 echo $(MOBJS) >> putty.rsp
174 echo $(MOBJ2) >> putty.rsp
175 echo $(OBJS1) >> putty.rsp
176 echo $(OBJS2) >> putty.rsp
177 echo $(OBJS3) >> putty.rsp
178 echo $(OBJS4) >> putty.rsp
179 echo $(PRESRC) >> putty.rsp
180 echo $(LIBS1) >> putty.rsp
181 echo $(LIBS2) >> putty.rsp
182 echo $(LIBS3) >> putty.rsp
183 echo $(SOCK1) >> putty.rsp
184
185puttytel.rsp: makefile
186 echo /nologo /subsystem:windows > puttytel.rsp
187 echo $(GOBJS1) >> puttytel.rsp
188 echo $(GOBJS2) >> puttytel.rsp
189 echo $(LOBJS1) >> puttytel.rsp
190 echo $(TOBJS) >> puttytel.rsp
191 echo $(MOBJS) >> puttytel.rsp
192 echo $(MOBJ2) >> puttytel.rsp
193 echo $(PRESRC) >> puttytel.rsp
194 echo $(LIBS1) >> puttytel.rsp
195 echo $(LIBS2) >> puttytel.rsp
196 echo $(LIBS3) >> puttytel.rsp
197 echo $(SOCK1) >> puttytel.rsp
198
199pageant.rsp: makefile
200 echo /nologo /subsystem:windows > pageant.rsp
201 echo $(PAGE1) >> pageant.rsp
202 echo $(PAGE2) >> pageant.rsp
203 echo $(PAGE3) >> pageant.rsp
204 echo $(PAGERC) >> pageant.rsp
205 echo $(LIBS1) >> pageant.rsp
206 echo $(LIBS2) >> pageant.rsp
207 echo $(LIBS3) >> pageant.rsp
208
209puttygen.rsp: makefile
210 echo /nologo /subsystem:windows > puttygen.rsp
211 echo $(GEN1) >> puttygen.rsp
212 echo $(GEN2) >> puttygen.rsp
213 echo $(GEN3) >> puttygen.rsp
214 echo $(GEN4) >> puttygen.rsp
215 echo $(GENRC) >> puttygen.rsp
216 echo $(LIBS1) >> puttygen.rsp
217 echo $(LIBS2) >> puttygen.rsp
218 echo $(LIBS3) >> puttygen.rsp
219
220pscp.rsp: makefile
221 echo /nologo /subsystem:console > pscp.rsp
222 echo $(SOBJS) >> pscp.rsp
223 echo $(MOBJS) >> pscp.rsp
224 echo $(MOBJ2) >> pscp.rsp
225 echo $(OBJS1) >> pscp.rsp
226 echo $(OBJS2) >> pscp.rsp
227 echo $(OBJS3) >> pscp.rsp
228 echo $(OBJS4) >> pscp.rsp
229 echo $(SRESRC) >> pscp.rsp
230 echo $(LIBS1) >> pscp.rsp
231 echo $(LIBS2) >> pscp.rsp
232 echo $(SOCK1) >> pscp.rsp
233
234psftp.rsp: makefile
235 echo /nologo /subsystem:console > psftp.rsp
236 echo $(FOBJS) >> psftp.rsp
237 echo $(MOBJS) >> psftp.rsp
238 echo $(MOBJ2) >> psftp.rsp
239 echo $(OBJS1) >> psftp.rsp
240 echo $(OBJS2) >> psftp.rsp
241 echo $(OBJS3) >> psftp.rsp
242 echo $(OBJS4) >> psftp.rsp
243 echo $(SRESRC) >> psftp.rsp
244 echo $(LIBS1) >> psftp.rsp
245 echo $(LIBS2) >> psftp.rsp
246 echo $(SOCK1) >> psftp.rsp
247
248plink.rsp: makefile
249 echo /nologo /subsystem:console > plink.rsp
250 echo $(LOBJS1) >> plink.rsp
251 echo $(POBJS) >> plink.rsp
252 echo $(PLOBJS) >> plink.rsp
253 echo $(MOBJS) >> plink.rsp
254 echo $(MOBJ2) >> plink.rsp
255 echo $(OBJS1) >> plink.rsp
256 echo $(OBJS2) >> plink.rsp
257 echo $(OBJS3) >> plink.rsp
258 echo $(OBJS4) >> plink.rsp
259 echo $(LRESRC) >> plink.rsp
260 echo $(LIBS1) >> plink.rsp
261 echo $(LIBS2) >> plink.rsp
262 echo $(SOCK2) >> plink.rsp
263
264##-- dependencies
265be_all.$(OBJ): be_all.c network.h puttymem.h putty.h
266be_none.$(OBJ): be_none.c network.h puttymem.h putty.h
267be_nossh.$(OBJ): be_nossh.c network.h puttymem.h putty.h
268bntest.$(OBJ): bntest.c puttymem.h ssh.h
269int64.$(OBJ): int64.c
270ldisc.$(OBJ): ldisc.c network.h puttymem.h putty.h
271misc.$(OBJ): misc.c network.h puttymem.h putty.h
272mscrypto.$(OBJ): mscrypto.c puttymem.h ssh.h
273noise.$(OBJ): noise.c network.h puttymem.h storage.h ssh.h putty.h
274pageant.$(OBJ): pageant.c puttymem.h ssh.h tree234.h
275pageantc.$(OBJ): pageantc.c puttymem.h
276plink.$(OBJ): plink.c network.h puttymem.h storage.h putty.h tree234.h
277psftp.$(OBJ): psftp.c network.h puttymem.h int64.h sftp.h storage.h ssh.h putty.h
278puttygen.$(OBJ): puttygen.c network.h puttymem.h winstuff.h ssh.h putty.h
279raw.$(OBJ): raw.c network.h puttymem.h putty.h
280rlogin.$(OBJ): rlogin.c network.h puttymem.h putty.h
281scp.$(OBJ): scp.c network.h puttymem.h storage.h winstuff.h putty.h
282settings.$(OBJ): settings.c network.h puttymem.h storage.h putty.h
283sftp.$(OBJ): sftp.c sftp.h int64.h
284sizetip.$(OBJ): sizetip.c network.h puttymem.h winstuff.h putty.h
285ssh.$(OBJ): ssh.c network.h puttymem.h ssh.h putty.h tree234.h
286sshaes.$(OBJ): sshaes.c puttymem.h ssh.h
287sshblowf.$(OBJ): sshblowf.c puttymem.h ssh.h
288sshbn.$(OBJ): sshbn.c network.h puttymem.h ssh.h putty.h
289sshcrc.$(OBJ): sshcrc.c
290sshdes.$(OBJ): sshdes.c puttymem.h ssh.h
291sshdh.$(OBJ): sshdh.c puttymem.h ssh.h
292sshdss.$(OBJ): sshdss.c puttymem.h ssh.h
293sshmd5.$(OBJ): sshmd5.c puttymem.h ssh.h
294sshprime.$(OBJ): sshprime.c puttymem.h ssh.h
295sshpubk.$(OBJ): sshpubk.c puttymem.h ssh.h
296sshrand.$(OBJ): sshrand.c puttymem.h ssh.h
297sshrsa.$(OBJ): sshrsa.c puttymem.h ssh.h
298sshrsag.$(OBJ): sshrsag.c puttymem.h ssh.h
299sshsha.$(OBJ): sshsha.c puttymem.h ssh.h
300sshzlib.$(OBJ): sshzlib.c network.h puttymem.h ssh.h putty.h
301telnet.$(OBJ): telnet.c network.h puttymem.h putty.h
302terminal.$(OBJ): terminal.c network.h puttymem.h putty.h tree234.h
303tree234.$(OBJ): tree234.c tree234.h
304version.$(OBJ): version.c
305winctrls.$(OBJ): winctrls.c winstuff.h
306windlg.$(OBJ): windlg.c network.h puttymem.h storage.h winstuff.h putty.h ssh.h win_res.h
307window.$(OBJ): window.c network.h puttymem.h storage.h winstuff.h putty.h win_res.h
308winnet.$(OBJ): winnet.c network.h puttymem.h putty.h tree234.h
309winstore.$(OBJ): winstore.c network.h puttymem.h storage.h putty.h
310x11fwd.$(OBJ): x11fwd.c network.h puttymem.h ssh.h putty.h
311portfwd.$(OBJ): portfwd.c network.h puttymem.h ssh.h putty.h
312xlat.$(OBJ): xlat.c network.h puttymem.h putty.h
313##--
314
315# Hack to force version.obj to be rebuilt always
316version.obj: *.c *.h *.rc
317 cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
318
319##-- dependencies
320win_res.$(RES): win_res.rc win_res.h putty.ico
321##--
322win_res.$(RES):
323 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
324
325##-- dependencies
326scp.$(RES): scp.rc scp.ico
327##--
328scp.$(RES):
329 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
330
331##-- dependencies
332pageant.$(RES): pageant.rc pageant.ico pageants.ico
333##--
334pageant.$(RES):
335 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
336
337##-- dependencies
338puttygen.$(RES): puttygen.rc puttygen.ico
339##--
340puttygen.$(RES):
341 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 puttygen.rc
342
343clean: tidy
344 -del *.exe
345
346tidy:
347 -del *.obj
348 -del *.res
349 -del *.pch
350 -del *.aps
351 -del *.ilk
352 -del *.pdb
353 -del *.rsp
354 -del *.dsp
355 -del *.dsw
356 -del *.ncb
357 -del *.opt
358 -del *.plg
359 -del *.map
360 -del *.idb
361 -del debug.log