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