Pageant interface changes. You can now do `pageant -c command' to
[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
79fc73e2 78FOBJS = psftp.$(OBJ) sftp.$(OBJ) int64.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
4a8fc3c4 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)
8479e33c 86OBJS4 = x11fwd.$(OBJ) sshaes.$(OBJ)
5c58ad2d 87##-- objects pageant
88PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ)
8479e33c 89PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ) misc.$(OBJ) sshaes.$(OBJ)
ddecd643 90PAGE3 = sshsha.$(OBJ) pageantc.$(OBJ)
6e522441 91##-- objects puttygen
92GEN1 = puttygen.$(OBJ) sshrsag.$(OBJ) sshprime.$(OBJ) sshdes.$(OBJ)
93GEN2 = sshbn.$(OBJ) sshmd5.$(OBJ) version.$(OBJ) sshrand.$(OBJ) noise.$(OBJ)
94GEN3 = sshsha.$(OBJ) winstore.$(OBJ) misc.$(OBJ) winctrls.$(OBJ)
8479e33c 95GEN4 = sshrsa.$(OBJ) sshpubk.$(OBJ) sshaes.$(OBJ)
9d01fc92 96##-- resources putty puttytel
3d541627 97PRESRC = win_res.$(RES)
5c58ad2d 98##-- resources pageant
99PAGERC = pageant.$(RES)
6e522441 100##-- resources puttygen
101GENRC = puttygen.$(RES)
4a8fc3c4 102##-- resources pscp psftp
3d541627 103SRESRC = scp.$(RES)
4017be6d 104##-- resources plink
105LRESRC = plink.$(RES)
3d541627 106##--
107
108##-- gui-apps
109# putty
89ee5268 110# puttytel
5c58ad2d 111# pageant
6e522441 112# puttygen
3d541627 113##-- console-apps
114# pscp
4a8fc3c4 115# psftp
6d2d5e8d 116# plink ws2_32
3d541627 117##--
118
374330e2 119LIBS1 = advapi32.lib user32.lib gdi32.lib
4017be6d 120LIBS2 = comctl32.lib comdlg32.lib
5c58ad2d 121LIBS3 = shell32.lib
4017be6d 122SOCK1 = wsock32.lib
123SOCK2 = ws2_32.lib
4585985c 124
79fc73e2 125all: putty.exe puttytel.exe pscp.exe psftp.exe \
126 plink.exe pageant.exe puttygen.exe
89ee5268 127
9c964e85 128putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(PRESRC) putty.rsp
4491fef5 129 link $(LFLAGS) -out:putty.exe -map:putty.map @putty.rsp
89ee5268 130
8df7a775 131puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(MOBJ2) $(PRESRC) puttytel.rsp
4491fef5 132 link $(LFLAGS) -out:puttytel.exe -map:puttytel.map @puttytel.rsp
89ee5268 133
afc47154 134pageant.exe: $(PAGE1) $(PAGE2) $(PAGE3) $(PAGERC) pageant.rsp
4491fef5 135 link $(LFLAGS) -out:pageant.exe -map:pageant.map @pageant.rsp
5c58ad2d 136
6e522441 137puttygen.exe: $(GEN1) $(GEN2) $(GEN3) $(GEN4) $(GENRC) puttygen.rsp
4491fef5 138 link $(LFLAGS) -out:puttygen.exe -map:puttygen.map @puttygen.rsp
6e522441 139
9c964e85 140pscp.exe: $(SOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) pscp.rsp
4491fef5 141 link $(LFLAGS) -out:pscp.exe -map:pscp.map @pscp.rsp
89ee5268 142
79fc73e2 143psftp.exe: $(FOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) psftp.rsp
144 link $(LFLAGS) -out:psftp.exe -map:psftp.map @psftp.rsp
145
9c964e85 146plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(LRESRC) plink.rsp
4491fef5 147 link $(LFLAGS) -out:plink.exe -map:plink.map @plink.rsp
4017be6d 148
89ee5268 149putty.rsp: makefile
150 echo /nologo /subsystem:windows > putty.rsp
151 echo $(GOBJS1) >> putty.rsp
152 echo $(GOBJS2) >> putty.rsp
4017be6d 153 echo $(LOBJS1) >> putty.rsp
89ee5268 154 echo $(POBJS) >> putty.rsp
155 echo $(MOBJS) >> putty.rsp
8df7a775 156 echo $(MOBJ2) >> putty.rsp
89ee5268 157 echo $(OBJS1) >> putty.rsp
158 echo $(OBJS2) >> putty.rsp
e5574168 159 echo $(OBJS3) >> putty.rsp
9c964e85 160 echo $(OBJS4) >> putty.rsp
89ee5268 161 echo $(PRESRC) >> putty.rsp
162 echo $(LIBS1) >> putty.rsp
163 echo $(LIBS2) >> putty.rsp
defab6b8 164 echo $(LIBS3) >> putty.rsp
4017be6d 165 echo $(SOCK1) >> putty.rsp
89ee5268 166
167puttytel.rsp: makefile
168 echo /nologo /subsystem:windows > puttytel.rsp
169 echo $(GOBJS1) >> puttytel.rsp
170 echo $(GOBJS2) >> puttytel.rsp
4017be6d 171 echo $(LOBJS1) >> puttytel.rsp
89ee5268 172 echo $(TOBJS) >> puttytel.rsp
173 echo $(MOBJS) >> puttytel.rsp
8df7a775 174 echo $(MOBJ2) >> puttytel.rsp
9d01fc92 175 echo $(PRESRC) >> puttytel.rsp
89ee5268 176 echo $(LIBS1) >> puttytel.rsp
177 echo $(LIBS2) >> puttytel.rsp
defab6b8 178 echo $(LIBS3) >> puttytel.rsp
4017be6d 179 echo $(SOCK1) >> puttytel.rsp
89ee5268 180
5c58ad2d 181pageant.rsp: makefile
182 echo /nologo /subsystem:windows > pageant.rsp
6e522441 183 echo $(PAGE1) >> pageant.rsp
184 echo $(PAGE2) >> pageant.rsp
afc47154 185 echo $(PAGE3) >> pageant.rsp
6e522441 186 echo $(PAGERC) >> pageant.rsp
5c58ad2d 187 echo $(LIBS1) >> pageant.rsp
188 echo $(LIBS2) >> pageant.rsp
189 echo $(LIBS3) >> pageant.rsp
190
6e522441 191puttygen.rsp: makefile
192 echo /nologo /subsystem:windows > puttygen.rsp
193 echo $(GEN1) >> puttygen.rsp
194 echo $(GEN2) >> puttygen.rsp
195 echo $(GEN3) >> puttygen.rsp
196 echo $(GEN4) >> puttygen.rsp
197 echo $(GENRC) >> puttygen.rsp
198 echo $(LIBS1) >> puttygen.rsp
199 echo $(LIBS2) >> puttygen.rsp
200 echo $(LIBS3) >> puttygen.rsp
201
89ee5268 202pscp.rsp: makefile
203 echo /nologo /subsystem:console > pscp.rsp
204 echo $(SOBJS) >> pscp.rsp
205 echo $(MOBJS) >> pscp.rsp
8df7a775 206 echo $(MOBJ2) >> pscp.rsp
89ee5268 207 echo $(OBJS1) >> pscp.rsp
208 echo $(OBJS2) >> pscp.rsp
e5574168 209 echo $(OBJS3) >> pscp.rsp
9c964e85 210 echo $(OBJS4) >> pscp.rsp
89ee5268 211 echo $(SRESRC) >> pscp.rsp
212 echo $(LIBS1) >> pscp.rsp
213 echo $(LIBS2) >> pscp.rsp
4017be6d 214 echo $(SOCK1) >> pscp.rsp
215
79fc73e2 216psftp.rsp: makefile
217 echo /nologo /subsystem:console > psftp.rsp
218 echo $(FOBJS) >> psftp.rsp
219 echo $(MOBJS) >> psftp.rsp
220 echo $(MOBJ2) >> psftp.rsp
221 echo $(OBJS1) >> psftp.rsp
222 echo $(OBJS2) >> psftp.rsp
223 echo $(OBJS3) >> psftp.rsp
224 echo $(OBJS4) >> psftp.rsp
225 echo $(SRESRC) >> psftp.rsp
226 echo $(LIBS1) >> psftp.rsp
227 echo $(LIBS2) >> psftp.rsp
228 echo $(SOCK1) >> psftp.rsp
229
4017be6d 230plink.rsp: makefile
231 echo /nologo /subsystem:console > plink.rsp
232 echo $(LOBJS1) >> plink.rsp
233 echo $(POBJS) >> plink.rsp
234 echo $(PLOBJS) >> plink.rsp
235 echo $(MOBJS) >> plink.rsp
8df7a775 236 echo $(MOBJ2) >> plink.rsp
4017be6d 237 echo $(OBJS1) >> plink.rsp
238 echo $(OBJS2) >> plink.rsp
239 echo $(OBJS3) >> plink.rsp
9c964e85 240 echo $(OBJS4) >> plink.rsp
4017be6d 241 echo $(LRESRC) >> plink.rsp
242 echo $(LIBS1) >> plink.rsp
243 echo $(LIBS2) >> plink.rsp
244 echo $(SOCK2) >> plink.rsp
3d541627 245
246##-- dependencies
dcbde236 247window.$(OBJ): window.c putty.h puttymem.h network.h win_res.h storage.h winstuff.h
248windlg.$(OBJ): windlg.c putty.h puttymem.h network.h ssh.h win_res.h winstuff.h
8c3cd914 249winctrls.$(OBJ): winctrls.c winstuff.h winstuff.h
dcbde236 250settings.$(OBJ): settings.c putty.h puttymem.h network.h storage.h
251winstore.$(OBJ): winstore.c putty.h puttymem.h network.h storage.h
252terminal.$(OBJ): terminal.c putty.h puttymem.h network.h
253sizetip.$(OBJ): sizetip.c putty.h puttymem.h network.h winstuff.h
254telnet.$(OBJ): telnet.c putty.h puttymem.h network.h
255raw.$(OBJ): raw.c putty.h puttymem.h network.h
c91409da 256rlogin.$(OBJ): rlogin.c putty.h puttymem.h network.h
dcbde236 257xlat.$(OBJ): xlat.c putty.h puttymem.h network.h
258ldisc.$(OBJ): ldisc.c putty.h puttymem.h network.h
259misc.$(OBJ): misc.c putty.h puttymem.h network.h
260noise.$(OBJ): noise.c putty.h puttymem.h network.h ssh.h storage.h
261ssh.$(OBJ): ssh.c ssh.h putty.h puttymem.h network.h tree234.h
262sshcrc.$(OBJ): sshcrc.c ssh.h puttymem.h
263sshdes.$(OBJ): sshdes.c ssh.h puttymem.h
8479e33c 264sshaes.$(OBJ): sshaes.c ssh.h puttymem.h
dcbde236 265sshmd5.$(OBJ): sshmd5.c ssh.h puttymem.h
266sshrsa.$(OBJ): sshrsa.c ssh.h puttymem.h
267sshsha.$(OBJ): sshsha.c ssh.h puttymem.h
268sshrand.$(OBJ): sshrand.c ssh.h puttymem.h
269sshblowf.$(OBJ): sshblowf.c ssh.h puttymem.h
270sshdh.$(OBJ): sshdh.c ssh.h puttymem.h
271sshdss.$(OBJ): sshdss.c ssh.h puttymem.h
272sshbn.$(OBJ): sshbn.c ssh.h puttymem.h
273sshpubk.$(OBJ): sshpubk.c ssh.h puttymem.h
274sshzlib.$(OBJ): sshzlib.c ssh.h puttymem.h
275scp.$(OBJ): scp.c putty.h puttymem.h network.h winstuff.h
3d541627 276version.$(OBJ): version.c
89ee5268 277be_all.$(OBJ): be_all.c
278be_nossh.$(OBJ): be_nossh.c
279be_none.$(OBJ): be_none.c
dcbde236 280plink.$(OBJ): plink.c putty.h puttymem.h network.h winstuff.h
281pageant.$(OBJ): pageant.c ssh.h puttymem.h tree234.h
282pageantc.$(OBJ): pageantc.c puttymem.h
283tree234.$(OBJ): tree234.c tree234.h puttymem.h
3332c06e 284puttygen.$(OBJ): puttygen.c putty.h ssh.h winstuff.h
4a8fc3c4 285psftp.$(OBJ): psftp.c putty.h ssh.h storage.h sftp.h int64.h
791ed432 286sftp.$(OBJ): sftp.c sftp.h int64.h
4a8fc3c4 287int64.$(OBJ): int64.c int64.h
8ddd7f4e 288x11fwd.$(OBJ): x11fwd.c putty.h network.h puttymem.h ssh.h
3d541627 289##--
067a15ea 290
291# Hack to force version.obj to be rebuilt always
3d541627 292version.obj: versionpseudotarget
293 @echo (built version.obj)
067a15ea 294versionpseudotarget:
295 cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
374330e2 296
3d541627 297##-- dependencies
298win_res.$(RES): win_res.rc win_res.h putty.ico
299##--
300win_res.$(RES):
6ed3635b 301 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
374330e2 302
3d541627 303##-- dependencies
304scp.$(RES): scp.rc scp.ico
305##--
306scp.$(RES):
6ed3635b 307 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
4585985c 308
5c58ad2d 309##-- dependencies
310pageant.$(RES): pageant.rc pageant.ico pageants.ico
311##--
312pageant.$(RES):
313 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
314
6e522441 315##-- dependencies
316puttygen.$(RES): puttygen.rc puttygen.ico
317##--
318puttygen.$(RES):
319 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 puttygen.rc
320
1a5adedf 321clean: tidy
374330e2 322 del *.exe
1a5adedf 323
324tidy:
325 del *.obj
374330e2 326 del *.res
327 del *.pch
328 del *.aps
329 del *.ilk
330 del *.pdb
067a15ea 331 del *.rsp
1ee529ed 332 del *.dsp
333 del *.dsw
334 del *.ncb
335 del *.opt
336 del *.plg
1a5adedf 337 del *.map