psftp now works as part of the PuTTY suite
[u/mdw/putty] / Makefile
CommitLineData
3d541627 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#
4d331a77 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#
6ed3635b 30# - RCFL=/DASCIICTLS
760858ff 31# Uses ASCII rather than Unicode to specify the tab control in
32# the resource file. Probably most useful when compiling with
33# Cygnus/mingw32, whose resource compiler may have less of a
34# problem with it.
35#
b191636d 36# - XFLAGS=/DMALLOC_LOG
37# Causes PuTTY to emit a file called putty_mem.log, logging every
38# memory allocation and free, so you can track memory leaks.
39#
40# - XFLAGS=/DMINEFIELD
41# Causes PuTTY to use a custom memory allocator, similar in
42# concept to Electric Fence, in place of regular malloc(). Wastes
43# huge amounts of RAM, but should cause heap-corruption bugs to
44# show up as GPFs at the point of failure rather than appearing
45# later on as second-level damage.
46#
3d541627 47##--
676c0556 48
5f48a59c 49CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd
373e94e9 50# LFLAGS = /debug
51
52# Use MSVC DLL
c9def1b8 53# CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /MD /Fd
373e94e9 54
55# Disable debug and incremental linking
56LFLAGS = /incremental:no
374330e2 57
58.c.obj:
b191636d 59 cl $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) /c $*.c
374330e2 60
3d541627 61OBJ=obj
62RES=res
63
89ee5268 64##-- objects putty puttytel
8c3cd914 65GOBJS1 = window.$(OBJ) windlg.$(OBJ) winctrls.$(OBJ) terminal.$(OBJ)
4017be6d 66GOBJS2 = xlat.$(OBJ) sizetip.$(OBJ)
67##-- objects putty puttytel plink
c91409da 68LOBJS1 = telnet.$(OBJ) raw.$(OBJ) rlogin.$(OBJ) ldisc.$(OBJ) winnet.$(OBJ)
4017be6d 69##-- objects putty plink
5c58ad2d 70POBJS = be_all.$(OBJ)
89ee5268 71##-- objects puttytel
72TOBJS = be_nossh.$(OBJ)
4017be6d 73##-- objects plink
a9422f39 74PLOBJS = plink.$(OBJ)
3d541627 75##-- objects pscp
8df7a775 76SOBJS = scp.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
4a8fc3c4 77##-- objects psftp
78SOBJS = psftp.$(OBJ) sftp.$(OBJ) int64.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
79##-- objects putty puttytel pscp psftp plink
a9422f39 80MOBJS = misc.$(OBJ) version.$(OBJ) winstore.$(OBJ) settings.$(OBJ)
8df7a775 81MOBJ2 = tree234.$(OBJ)
4a8fc3c4 82##-- objects putty pscp psftp plink
89ee5268 83OBJS1 = sshcrc.$(OBJ) sshdes.$(OBJ) sshmd5.$(OBJ) sshrsa.$(OBJ) sshrand.$(OBJ)
e5574168 84OBJS2 = sshsha.$(OBJ) sshblowf.$(OBJ) noise.$(OBJ) sshdh.$(OBJ) sshdss.$(OBJ)
4ba9b64b 85OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) ssh.$(OBJ) pageantc.$(OBJ) sshzlib.$(OBJ)
9c964e85 86OBJS4 = x11fwd.$(OBJ)
5c58ad2d 87##-- objects pageant
88PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ)
dcbde236 89PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ) misc.$(OBJ)
6e522441 90##-- objects puttygen
91GEN1 = puttygen.$(OBJ) sshrsag.$(OBJ) sshprime.$(OBJ) sshdes.$(OBJ)
92GEN2 = sshbn.$(OBJ) sshmd5.$(OBJ) version.$(OBJ) sshrand.$(OBJ) noise.$(OBJ)
93GEN3 = sshsha.$(OBJ) winstore.$(OBJ) misc.$(OBJ) winctrls.$(OBJ)
94GEN4 = sshrsa.$(OBJ) sshpubk.$(OBJ)
9d01fc92 95##-- resources putty puttytel
3d541627 96PRESRC = win_res.$(RES)
5c58ad2d 97##-- resources pageant
98PAGERC = pageant.$(RES)
6e522441 99##-- resources puttygen
100GENRC = puttygen.$(RES)
4a8fc3c4 101##-- resources pscp psftp
3d541627 102SRESRC = scp.$(RES)
4017be6d 103##-- resources plink
104LRESRC = plink.$(RES)
3d541627 105##--
106
107##-- gui-apps
108# putty
89ee5268 109# puttytel
5c58ad2d 110# pageant
6e522441 111# puttygen
3d541627 112##-- console-apps
113# pscp
4a8fc3c4 114# psftp
6d2d5e8d 115# plink ws2_32
3d541627 116##--
117
374330e2 118LIBS1 = advapi32.lib user32.lib gdi32.lib
4017be6d 119LIBS2 = comctl32.lib comdlg32.lib
5c58ad2d 120LIBS3 = shell32.lib
4017be6d 121SOCK1 = wsock32.lib
122SOCK2 = ws2_32.lib
4585985c 123
6e522441 124all: putty.exe puttytel.exe pscp.exe plink.exe pageant.exe puttygen.exe
89ee5268 125
9c964e85 126putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(PRESRC) putty.rsp
4491fef5 127 link $(LFLAGS) -out:putty.exe -map:putty.map @putty.rsp
89ee5268 128
8df7a775 129puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(MOBJ2) $(PRESRC) puttytel.rsp
4491fef5 130 link $(LFLAGS) -out:puttytel.exe -map:puttytel.map @puttytel.rsp
89ee5268 131
5c58ad2d 132pageant.exe: $(PAGE1) $(PAGE2) $(PAGERC) pageant.rsp
4491fef5 133 link $(LFLAGS) -out:pageant.exe -map:pageant.map @pageant.rsp
5c58ad2d 134
6e522441 135puttygen.exe: $(GEN1) $(GEN2) $(GEN3) $(GEN4) $(GENRC) puttygen.rsp
4491fef5 136 link $(LFLAGS) -out:puttygen.exe -map:puttygen.map @puttygen.rsp
6e522441 137
9c964e85 138pscp.exe: $(SOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) pscp.rsp
4491fef5 139 link $(LFLAGS) -out:pscp.exe -map:pscp.map @pscp.rsp
89ee5268 140
9c964e85 141plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(LRESRC) plink.rsp
4491fef5 142 link $(LFLAGS) -out:plink.exe -map:plink.map @plink.rsp
4017be6d 143
89ee5268 144putty.rsp: makefile
145 echo /nologo /subsystem:windows > putty.rsp
146 echo $(GOBJS1) >> putty.rsp
147 echo $(GOBJS2) >> putty.rsp
4017be6d 148 echo $(LOBJS1) >> putty.rsp
89ee5268 149 echo $(POBJS) >> putty.rsp
150 echo $(MOBJS) >> putty.rsp
8df7a775 151 echo $(MOBJ2) >> putty.rsp
89ee5268 152 echo $(OBJS1) >> putty.rsp
153 echo $(OBJS2) >> putty.rsp
e5574168 154 echo $(OBJS3) >> putty.rsp
9c964e85 155 echo $(OBJS4) >> putty.rsp
89ee5268 156 echo $(PRESRC) >> putty.rsp
157 echo $(LIBS1) >> putty.rsp
158 echo $(LIBS2) >> putty.rsp
4017be6d 159 echo $(SOCK1) >> putty.rsp
89ee5268 160
161puttytel.rsp: makefile
162 echo /nologo /subsystem:windows > puttytel.rsp
163 echo $(GOBJS1) >> puttytel.rsp
164 echo $(GOBJS2) >> puttytel.rsp
4017be6d 165 echo $(LOBJS1) >> puttytel.rsp
89ee5268 166 echo $(TOBJS) >> puttytel.rsp
167 echo $(MOBJS) >> puttytel.rsp
8df7a775 168 echo $(MOBJ2) >> puttytel.rsp
9d01fc92 169 echo $(PRESRC) >> puttytel.rsp
89ee5268 170 echo $(LIBS1) >> puttytel.rsp
171 echo $(LIBS2) >> puttytel.rsp
4017be6d 172 echo $(SOCK1) >> puttytel.rsp
89ee5268 173
5c58ad2d 174pageant.rsp: makefile
175 echo /nologo /subsystem:windows > pageant.rsp
6e522441 176 echo $(PAGE1) >> pageant.rsp
177 echo $(PAGE2) >> pageant.rsp
178 echo $(PAGERC) >> pageant.rsp
5c58ad2d 179 echo $(LIBS1) >> pageant.rsp
180 echo $(LIBS2) >> pageant.rsp
181 echo $(LIBS3) >> pageant.rsp
182
6e522441 183puttygen.rsp: makefile
184 echo /nologo /subsystem:windows > puttygen.rsp
185 echo $(GEN1) >> puttygen.rsp
186 echo $(GEN2) >> puttygen.rsp
187 echo $(GEN3) >> puttygen.rsp
188 echo $(GEN4) >> puttygen.rsp
189 echo $(GENRC) >> puttygen.rsp
190 echo $(LIBS1) >> puttygen.rsp
191 echo $(LIBS2) >> puttygen.rsp
192 echo $(LIBS3) >> puttygen.rsp
193
89ee5268 194pscp.rsp: makefile
195 echo /nologo /subsystem:console > pscp.rsp
196 echo $(SOBJS) >> pscp.rsp
197 echo $(MOBJS) >> pscp.rsp
8df7a775 198 echo $(MOBJ2) >> pscp.rsp
89ee5268 199 echo $(OBJS1) >> pscp.rsp
200 echo $(OBJS2) >> pscp.rsp
e5574168 201 echo $(OBJS3) >> pscp.rsp
9c964e85 202 echo $(OBJS4) >> pscp.rsp
89ee5268 203 echo $(SRESRC) >> pscp.rsp
204 echo $(LIBS1) >> pscp.rsp
205 echo $(LIBS2) >> pscp.rsp
4017be6d 206 echo $(SOCK1) >> pscp.rsp
207
208plink.rsp: makefile
209 echo /nologo /subsystem:console > plink.rsp
210 echo $(LOBJS1) >> plink.rsp
211 echo $(POBJS) >> plink.rsp
212 echo $(PLOBJS) >> plink.rsp
213 echo $(MOBJS) >> plink.rsp
8df7a775 214 echo $(MOBJ2) >> plink.rsp
4017be6d 215 echo $(OBJS1) >> plink.rsp
216 echo $(OBJS2) >> plink.rsp
217 echo $(OBJS3) >> plink.rsp
9c964e85 218 echo $(OBJS4) >> plink.rsp
4017be6d 219 echo $(LRESRC) >> plink.rsp
220 echo $(LIBS1) >> plink.rsp
221 echo $(LIBS2) >> plink.rsp
222 echo $(SOCK2) >> plink.rsp
3d541627 223
224##-- dependencies
dcbde236 225window.$(OBJ): window.c putty.h puttymem.h network.h win_res.h storage.h winstuff.h
226windlg.$(OBJ): windlg.c putty.h puttymem.h network.h ssh.h win_res.h winstuff.h
8c3cd914 227winctrls.$(OBJ): winctrls.c winstuff.h winstuff.h
dcbde236 228settings.$(OBJ): settings.c putty.h puttymem.h network.h storage.h
229winstore.$(OBJ): winstore.c putty.h puttymem.h network.h storage.h
230terminal.$(OBJ): terminal.c putty.h puttymem.h network.h
231sizetip.$(OBJ): sizetip.c putty.h puttymem.h network.h winstuff.h
232telnet.$(OBJ): telnet.c putty.h puttymem.h network.h
233raw.$(OBJ): raw.c putty.h puttymem.h network.h
c91409da 234rlogin.$(OBJ): rlogin.c putty.h puttymem.h network.h
dcbde236 235xlat.$(OBJ): xlat.c putty.h puttymem.h network.h
236ldisc.$(OBJ): ldisc.c putty.h puttymem.h network.h
237misc.$(OBJ): misc.c putty.h puttymem.h network.h
238noise.$(OBJ): noise.c putty.h puttymem.h network.h ssh.h storage.h
239ssh.$(OBJ): ssh.c ssh.h putty.h puttymem.h network.h tree234.h
240sshcrc.$(OBJ): sshcrc.c ssh.h puttymem.h
241sshdes.$(OBJ): sshdes.c ssh.h puttymem.h
242sshmd5.$(OBJ): sshmd5.c ssh.h puttymem.h
243sshrsa.$(OBJ): sshrsa.c ssh.h puttymem.h
244sshsha.$(OBJ): sshsha.c ssh.h puttymem.h
245sshrand.$(OBJ): sshrand.c ssh.h puttymem.h
246sshblowf.$(OBJ): sshblowf.c ssh.h puttymem.h
247sshdh.$(OBJ): sshdh.c ssh.h puttymem.h
248sshdss.$(OBJ): sshdss.c ssh.h puttymem.h
249sshbn.$(OBJ): sshbn.c ssh.h puttymem.h
250sshpubk.$(OBJ): sshpubk.c ssh.h puttymem.h
251sshzlib.$(OBJ): sshzlib.c ssh.h puttymem.h
252scp.$(OBJ): scp.c putty.h puttymem.h network.h winstuff.h
3d541627 253version.$(OBJ): version.c
89ee5268 254be_all.$(OBJ): be_all.c
255be_nossh.$(OBJ): be_nossh.c
256be_none.$(OBJ): be_none.c
dcbde236 257plink.$(OBJ): plink.c putty.h puttymem.h network.h winstuff.h
258pageant.$(OBJ): pageant.c ssh.h puttymem.h tree234.h
259pageantc.$(OBJ): pageantc.c puttymem.h
260tree234.$(OBJ): tree234.c tree234.h puttymem.h
3332c06e 261puttygen.$(OBJ): puttygen.c putty.h ssh.h winstuff.h
4a8fc3c4 262psftp.$(OBJ): psftp.c putty.h ssh.h storage.h sftp.h int64.h
263sftp.$(OBJ): psftp.c sftp.h int64.h
264int64.$(OBJ): int64.c int64.h
3d541627 265##--
067a15ea 266
267# Hack to force version.obj to be rebuilt always
3d541627 268version.obj: versionpseudotarget
269 @echo (built version.obj)
067a15ea 270versionpseudotarget:
271 cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
374330e2 272
3d541627 273##-- dependencies
274win_res.$(RES): win_res.rc win_res.h putty.ico
275##--
276win_res.$(RES):
6ed3635b 277 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
374330e2 278
3d541627 279##-- dependencies
280scp.$(RES): scp.rc scp.ico
281##--
282scp.$(RES):
6ed3635b 283 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
4585985c 284
5c58ad2d 285##-- dependencies
286pageant.$(RES): pageant.rc pageant.ico pageants.ico
287##--
288pageant.$(RES):
289 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
290
6e522441 291##-- dependencies
292puttygen.$(RES): puttygen.rc puttygen.ico
293##--
294puttygen.$(RES):
295 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 puttygen.rc
296
1a5adedf 297clean: tidy
374330e2 298 del *.exe
1a5adedf 299
300tidy:
301 del *.obj
374330e2 302 del *.res
303 del *.pch
304 del *.aps
305 del *.ilk
306 del *.pdb
067a15ea 307 del *.rsp
1ee529ed 308 del *.dsp
309 del *.dsw
310 del *.ncb
311 del *.opt
312 del *.plg
1a5adedf 313 del *.map