]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blob - Makefile
b1261d252abd39c7e352de1ee4512c4528fe03c1
[PuTTY_svn.git] / Makefile
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 #  - RCFL=/DASCIICTLS
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 #
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 #
47 ##--
48
49 CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd
50 # LFLAGS = /debug
51
52 # Use MSVC DLL
53 # CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /MD /Fd
54
55 # Disable debug and incremental linking
56 LFLAGS = /incremental:no
57
58 .c.obj:
59         cl $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) /c $*.c
60
61 OBJ=obj
62 RES=res
63
64 ##-- objects putty puttytel
65 GOBJS1 = window.$(OBJ) windlg.$(OBJ) winctrls.$(OBJ) terminal.$(OBJ)
66 GOBJS2 = xlat.$(OBJ) sizetip.$(OBJ)
67 ##-- objects putty puttytel plink
68 LOBJS1 = telnet.$(OBJ) raw.$(OBJ) rlogin.$(OBJ) ldisc.$(OBJ) winnet.$(OBJ)
69 ##-- objects putty plink
70 POBJS = be_all.$(OBJ)
71 ##-- objects puttytel
72 TOBJS = be_nossh.$(OBJ)
73 ##-- objects plink
74 PLOBJS = plink.$(OBJ)
75 ##-- objects pscp
76 SOBJS = scp.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
77 ##-- objects psftp
78 FOBJS = psftp.$(OBJ) sftp.$(OBJ) int64.$(OBJ) winnet.$(OBJ) be_none.$(OBJ)
79 ##-- objects putty puttytel pscp psftp plink
80 MOBJS = misc.$(OBJ) version.$(OBJ) winstore.$(OBJ) settings.$(OBJ)
81 MOBJ2 = tree234.$(OBJ)
82 ##-- objects putty pscp psftp plink
83 OBJS1 = sshcrc.$(OBJ) sshdes.$(OBJ) sshmd5.$(OBJ) sshrsa.$(OBJ) sshrand.$(OBJ)
84 OBJS2 = sshsha.$(OBJ) sshblowf.$(OBJ) noise.$(OBJ) sshdh.$(OBJ) sshdss.$(OBJ)
85 OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) ssh.$(OBJ) pageantc.$(OBJ) sshzlib.$(OBJ)
86 OBJS4 = x11fwd.$(OBJ) sshaes.$(OBJ)
87 ##-- objects pageant
88 PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ)
89 PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ) misc.$(OBJ) sshaes.$(OBJ)
90 PAGE3 = sshsha.$(OBJ)
91 ##-- objects puttygen
92 GEN1 = puttygen.$(OBJ) sshrsag.$(OBJ) sshprime.$(OBJ) sshdes.$(OBJ)
93 GEN2 = sshbn.$(OBJ) sshmd5.$(OBJ) version.$(OBJ) sshrand.$(OBJ) noise.$(OBJ)
94 GEN3 = sshsha.$(OBJ) winstore.$(OBJ) misc.$(OBJ) winctrls.$(OBJ)
95 GEN4 = sshrsa.$(OBJ) sshpubk.$(OBJ) sshaes.$(OBJ)
96 ##-- resources putty puttytel
97 PRESRC = win_res.$(RES)
98 ##-- resources pageant
99 PAGERC = pageant.$(RES)
100 ##-- resources puttygen
101 GENRC = puttygen.$(RES)
102 ##-- resources pscp psftp
103 SRESRC = scp.$(RES)
104 ##-- resources plink
105 LRESRC = plink.$(RES)
106 ##--
107
108 ##-- gui-apps
109 # putty
110 # puttytel
111 # pageant
112 # puttygen
113 ##-- console-apps
114 # pscp
115 # psftp
116 # plink ws2_32
117 ##--
118
119 LIBS1 = advapi32.lib user32.lib gdi32.lib
120 LIBS2 = comctl32.lib comdlg32.lib
121 LIBS3 = shell32.lib
122 SOCK1 = wsock32.lib
123 SOCK2 = ws2_32.lib
124
125 all: putty.exe puttytel.exe pscp.exe psftp.exe \
126      plink.exe pageant.exe puttygen.exe
127
128 putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(PRESRC) putty.rsp
129         link $(LFLAGS) -out:putty.exe -map:putty.map @putty.rsp
130
131 puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(MOBJ2) $(PRESRC) puttytel.rsp
132         link $(LFLAGS) -out:puttytel.exe -map:puttytel.map @puttytel.rsp
133
134 pageant.exe: $(PAGE1) $(PAGE2) $(PAGE3) $(PAGERC) pageant.rsp
135         link $(LFLAGS) -out:pageant.exe -map:pageant.map @pageant.rsp
136
137 puttygen.exe: $(GEN1) $(GEN2) $(GEN3) $(GEN4) $(GENRC) puttygen.rsp
138         link $(LFLAGS) -out:puttygen.exe -map:puttygen.map @puttygen.rsp
139
140 pscp.exe: $(SOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) pscp.rsp
141         link $(LFLAGS) -out:pscp.exe -map:pscp.map @pscp.rsp
142
143 psftp.exe: $(FOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(SRESRC) psftp.rsp
144         link $(LFLAGS) -out:psftp.exe -map:psftp.map @psftp.rsp
145
146 plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(OBJS2) $(OBJS3) $(OBJS4) $(LRESRC) plink.rsp
147         link $(LFLAGS) -out:plink.exe -map:plink.map @plink.rsp
148
149 putty.rsp: makefile
150         echo /nologo /subsystem:windows > putty.rsp
151         echo $(GOBJS1) >> putty.rsp
152         echo $(GOBJS2) >> putty.rsp
153         echo $(LOBJS1) >> putty.rsp
154         echo $(POBJS) >> putty.rsp
155         echo $(MOBJS) >> putty.rsp
156         echo $(MOBJ2) >> putty.rsp
157         echo $(OBJS1) >> putty.rsp
158         echo $(OBJS2) >> putty.rsp
159         echo $(OBJS3) >> putty.rsp
160         echo $(OBJS4) >> putty.rsp
161         echo $(PRESRC) >> putty.rsp
162         echo $(LIBS1) >> putty.rsp
163         echo $(LIBS2) >> putty.rsp
164         echo $(LIBS3) >> putty.rsp
165         echo $(SOCK1) >> putty.rsp
166
167 puttytel.rsp: makefile
168         echo /nologo /subsystem:windows > puttytel.rsp
169         echo $(GOBJS1) >> puttytel.rsp
170         echo $(GOBJS2) >> puttytel.rsp
171         echo $(LOBJS1) >> puttytel.rsp
172         echo $(TOBJS) >> puttytel.rsp
173         echo $(MOBJS) >> puttytel.rsp
174         echo $(MOBJ2) >> puttytel.rsp
175         echo $(PRESRC) >> puttytel.rsp
176         echo $(LIBS1) >> puttytel.rsp
177         echo $(LIBS2) >> puttytel.rsp
178         echo $(LIBS3) >> puttytel.rsp
179         echo $(SOCK1) >> puttytel.rsp
180
181 pageant.rsp: makefile
182         echo /nologo /subsystem:windows > pageant.rsp
183         echo $(PAGE1) >> pageant.rsp
184         echo $(PAGE2) >> pageant.rsp
185         echo $(PAGE3) >> pageant.rsp
186         echo $(PAGERC) >> pageant.rsp
187         echo $(LIBS1) >> pageant.rsp
188         echo $(LIBS2) >> pageant.rsp
189         echo $(LIBS3) >> pageant.rsp
190
191 puttygen.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
202 pscp.rsp: makefile
203         echo /nologo /subsystem:console > pscp.rsp
204         echo $(SOBJS) >> pscp.rsp
205         echo $(MOBJS) >> pscp.rsp
206         echo $(MOBJ2) >> pscp.rsp
207         echo $(OBJS1) >> pscp.rsp
208         echo $(OBJS2) >> pscp.rsp
209         echo $(OBJS3) >> pscp.rsp
210         echo $(OBJS4) >> pscp.rsp
211         echo $(SRESRC) >> pscp.rsp
212         echo $(LIBS1) >> pscp.rsp
213         echo $(LIBS2) >> pscp.rsp
214         echo $(SOCK1) >> pscp.rsp
215
216 psftp.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
230 plink.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
236         echo $(MOBJ2) >> plink.rsp
237         echo $(OBJS1) >> plink.rsp
238         echo $(OBJS2) >> plink.rsp
239         echo $(OBJS3) >> plink.rsp
240         echo $(OBJS4) >> plink.rsp
241         echo $(LRESRC) >> plink.rsp
242         echo $(LIBS1) >> plink.rsp
243         echo $(LIBS2) >> plink.rsp
244         echo $(SOCK2) >> plink.rsp
245
246 ##-- dependencies
247 window.$(OBJ): window.c putty.h puttymem.h network.h win_res.h storage.h winstuff.h
248 windlg.$(OBJ): windlg.c putty.h puttymem.h network.h ssh.h win_res.h winstuff.h
249 winctrls.$(OBJ): winctrls.c winstuff.h winstuff.h
250 settings.$(OBJ): settings.c putty.h puttymem.h network.h storage.h
251 winstore.$(OBJ): winstore.c putty.h puttymem.h network.h storage.h
252 terminal.$(OBJ): terminal.c putty.h puttymem.h network.h
253 sizetip.$(OBJ): sizetip.c putty.h puttymem.h network.h winstuff.h
254 telnet.$(OBJ): telnet.c putty.h puttymem.h network.h
255 raw.$(OBJ): raw.c putty.h puttymem.h network.h
256 rlogin.$(OBJ): rlogin.c putty.h puttymem.h network.h
257 xlat.$(OBJ): xlat.c putty.h puttymem.h network.h
258 ldisc.$(OBJ): ldisc.c putty.h puttymem.h network.h
259 misc.$(OBJ): misc.c putty.h puttymem.h network.h
260 noise.$(OBJ): noise.c putty.h puttymem.h network.h ssh.h storage.h
261 ssh.$(OBJ): ssh.c ssh.h putty.h puttymem.h network.h tree234.h
262 sshcrc.$(OBJ): sshcrc.c ssh.h puttymem.h
263 sshdes.$(OBJ): sshdes.c ssh.h puttymem.h
264 sshaes.$(OBJ): sshaes.c ssh.h puttymem.h
265 sshmd5.$(OBJ): sshmd5.c ssh.h puttymem.h
266 sshrsa.$(OBJ): sshrsa.c ssh.h puttymem.h
267 sshsha.$(OBJ): sshsha.c ssh.h puttymem.h
268 sshrand.$(OBJ): sshrand.c ssh.h puttymem.h
269 sshblowf.$(OBJ): sshblowf.c ssh.h puttymem.h
270 sshdh.$(OBJ): sshdh.c ssh.h puttymem.h
271 sshdss.$(OBJ): sshdss.c ssh.h puttymem.h
272 sshbn.$(OBJ): sshbn.c ssh.h puttymem.h
273 sshpubk.$(OBJ): sshpubk.c ssh.h puttymem.h
274 sshzlib.$(OBJ): sshzlib.c ssh.h puttymem.h
275 scp.$(OBJ): scp.c putty.h puttymem.h network.h winstuff.h
276 version.$(OBJ): version.c
277 be_all.$(OBJ): be_all.c
278 be_nossh.$(OBJ): be_nossh.c
279 be_none.$(OBJ): be_none.c
280 plink.$(OBJ): plink.c putty.h puttymem.h network.h winstuff.h
281 pageant.$(OBJ): pageant.c ssh.h puttymem.h tree234.h
282 pageantc.$(OBJ): pageantc.c puttymem.h
283 tree234.$(OBJ): tree234.c tree234.h puttymem.h
284 puttygen.$(OBJ): puttygen.c putty.h ssh.h winstuff.h
285 psftp.$(OBJ): psftp.c putty.h ssh.h storage.h sftp.h int64.h
286 sftp.$(OBJ): sftp.c sftp.h int64.h
287 int64.$(OBJ): int64.c int64.h
288 x11fwd.$(OBJ): x11fwd.c putty.h network.h puttymem.h ssh.h
289 ##--
290
291 # Hack to force version.obj to be rebuilt always
292 version.obj: versionpseudotarget
293         @echo (built version.obj)
294 versionpseudotarget:
295         cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
296
297 ##-- dependencies
298 win_res.$(RES): win_res.rc win_res.h putty.ico
299 ##--
300 win_res.$(RES):
301         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
302
303 ##-- dependencies
304 scp.$(RES): scp.rc scp.ico
305 ##--
306 scp.$(RES):
307         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
308
309 ##-- dependencies
310 pageant.$(RES): pageant.rc pageant.ico pageants.ico
311 ##--
312 pageant.$(RES):
313         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
314
315 ##-- dependencies
316 puttygen.$(RES): puttygen.rc puttygen.ico
317 ##--
318 puttygen.$(RES):
319         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 puttygen.rc
320
321 clean: tidy
322         del *.exe
323
324 tidy:
325         del *.obj
326         del *.res
327         del *.pch
328         del *.aps
329         del *.ilk
330         del *.pdb
331         del *.rsp
332         del *.dsp
333         del *.dsw
334         del *.ncb
335         del *.opt
336         del *.plg
337         del *.map