]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - Makefile
Add dependencies for x11fwd.obj to Makefile (thanks Catbells :-)
[PuTTY.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 $(SOCK1) >> putty.rsp
165
166 puttytel.rsp: makefile
167         echo /nologo /subsystem:windows > puttytel.rsp
168         echo $(GOBJS1) >> puttytel.rsp
169         echo $(GOBJS2) >> puttytel.rsp
170         echo $(LOBJS1) >> puttytel.rsp
171         echo $(TOBJS) >> puttytel.rsp
172         echo $(MOBJS) >> puttytel.rsp
173         echo $(MOBJ2) >> puttytel.rsp
174         echo $(PRESRC) >> puttytel.rsp
175         echo $(LIBS1) >> puttytel.rsp
176         echo $(LIBS2) >> puttytel.rsp
177         echo $(SOCK1) >> puttytel.rsp
178
179 pageant.rsp: makefile
180         echo /nologo /subsystem:windows > pageant.rsp
181         echo $(PAGE1) >> pageant.rsp
182         echo $(PAGE2) >> pageant.rsp
183         echo $(PAGE3) >> pageant.rsp
184         echo $(PAGERC) >> pageant.rsp
185         echo $(LIBS1) >> pageant.rsp
186         echo $(LIBS2) >> pageant.rsp
187         echo $(LIBS3) >> pageant.rsp
188
189 puttygen.rsp: makefile
190         echo /nologo /subsystem:windows > puttygen.rsp
191         echo $(GEN1) >> puttygen.rsp
192         echo $(GEN2) >> puttygen.rsp
193         echo $(GEN3) >> puttygen.rsp
194         echo $(GEN4) >> puttygen.rsp
195         echo $(GENRC) >> puttygen.rsp
196         echo $(LIBS1) >> puttygen.rsp
197         echo $(LIBS2) >> puttygen.rsp
198         echo $(LIBS3) >> puttygen.rsp
199
200 pscp.rsp: makefile
201         echo /nologo /subsystem:console > pscp.rsp
202         echo $(SOBJS) >> pscp.rsp
203         echo $(MOBJS) >> pscp.rsp
204         echo $(MOBJ2) >> pscp.rsp
205         echo $(OBJS1) >> pscp.rsp
206         echo $(OBJS2) >> pscp.rsp
207         echo $(OBJS3) >> pscp.rsp
208         echo $(OBJS4) >> pscp.rsp
209         echo $(SRESRC) >> pscp.rsp
210         echo $(LIBS1) >> pscp.rsp
211         echo $(LIBS2) >> pscp.rsp
212         echo $(SOCK1) >> pscp.rsp
213
214 psftp.rsp: makefile
215         echo /nologo /subsystem:console > psftp.rsp
216         echo $(FOBJS) >> psftp.rsp
217         echo $(MOBJS) >> psftp.rsp
218         echo $(MOBJ2) >> psftp.rsp
219         echo $(OBJS1) >> psftp.rsp
220         echo $(OBJS2) >> psftp.rsp
221         echo $(OBJS3) >> psftp.rsp
222         echo $(OBJS4) >> psftp.rsp
223         echo $(SRESRC) >> psftp.rsp
224         echo $(LIBS1) >> psftp.rsp
225         echo $(LIBS2) >> psftp.rsp
226         echo $(SOCK1) >> psftp.rsp
227
228 plink.rsp: makefile
229         echo /nologo /subsystem:console > plink.rsp
230         echo $(LOBJS1) >> plink.rsp
231         echo $(POBJS) >> plink.rsp
232         echo $(PLOBJS) >> plink.rsp
233         echo $(MOBJS) >> plink.rsp
234         echo $(MOBJ2) >> plink.rsp
235         echo $(OBJS1) >> plink.rsp
236         echo $(OBJS2) >> plink.rsp
237         echo $(OBJS3) >> plink.rsp
238         echo $(OBJS4) >> plink.rsp
239         echo $(LRESRC) >> plink.rsp
240         echo $(LIBS1) >> plink.rsp
241         echo $(LIBS2) >> plink.rsp
242         echo $(SOCK2) >> plink.rsp
243
244 ##-- dependencies
245 window.$(OBJ): window.c putty.h puttymem.h network.h win_res.h storage.h winstuff.h
246 windlg.$(OBJ): windlg.c putty.h puttymem.h network.h ssh.h win_res.h winstuff.h
247 winctrls.$(OBJ): winctrls.c winstuff.h winstuff.h
248 settings.$(OBJ): settings.c putty.h puttymem.h network.h storage.h
249 winstore.$(OBJ): winstore.c putty.h puttymem.h network.h storage.h
250 terminal.$(OBJ): terminal.c putty.h puttymem.h network.h
251 sizetip.$(OBJ): sizetip.c putty.h puttymem.h network.h winstuff.h
252 telnet.$(OBJ): telnet.c putty.h puttymem.h network.h
253 raw.$(OBJ): raw.c putty.h puttymem.h network.h
254 rlogin.$(OBJ): rlogin.c putty.h puttymem.h network.h
255 xlat.$(OBJ): xlat.c putty.h puttymem.h network.h
256 ldisc.$(OBJ): ldisc.c putty.h puttymem.h network.h
257 misc.$(OBJ): misc.c putty.h puttymem.h network.h
258 noise.$(OBJ): noise.c putty.h puttymem.h network.h ssh.h storage.h
259 ssh.$(OBJ): ssh.c ssh.h putty.h puttymem.h network.h tree234.h
260 sshcrc.$(OBJ): sshcrc.c ssh.h puttymem.h
261 sshdes.$(OBJ): sshdes.c ssh.h puttymem.h
262 sshaes.$(OBJ): sshaes.c ssh.h puttymem.h
263 sshmd5.$(OBJ): sshmd5.c ssh.h puttymem.h
264 sshrsa.$(OBJ): sshrsa.c ssh.h puttymem.h
265 sshsha.$(OBJ): sshsha.c ssh.h puttymem.h
266 sshrand.$(OBJ): sshrand.c ssh.h puttymem.h
267 sshblowf.$(OBJ): sshblowf.c ssh.h puttymem.h
268 sshdh.$(OBJ): sshdh.c ssh.h puttymem.h
269 sshdss.$(OBJ): sshdss.c ssh.h puttymem.h
270 sshbn.$(OBJ): sshbn.c ssh.h puttymem.h
271 sshpubk.$(OBJ): sshpubk.c ssh.h puttymem.h
272 sshzlib.$(OBJ): sshzlib.c ssh.h puttymem.h
273 scp.$(OBJ): scp.c putty.h puttymem.h network.h winstuff.h
274 version.$(OBJ): version.c
275 be_all.$(OBJ): be_all.c
276 be_nossh.$(OBJ): be_nossh.c
277 be_none.$(OBJ): be_none.c
278 plink.$(OBJ): plink.c putty.h puttymem.h network.h winstuff.h
279 pageant.$(OBJ): pageant.c ssh.h puttymem.h tree234.h
280 pageantc.$(OBJ): pageantc.c puttymem.h
281 tree234.$(OBJ): tree234.c tree234.h puttymem.h
282 puttygen.$(OBJ): puttygen.c putty.h ssh.h winstuff.h
283 psftp.$(OBJ): psftp.c putty.h ssh.h storage.h sftp.h int64.h
284 sftp.$(OBJ): sftp.c sftp.h int64.h
285 int64.$(OBJ): int64.c int64.h
286 x11fwd.$(OBJ): x11fwd.c putty.h network.h puttymem.h ssh.h
287 ##--
288
289 # Hack to force version.obj to be rebuilt always
290 version.obj: versionpseudotarget
291         @echo (built version.obj)
292 versionpseudotarget:
293         cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
294
295 ##-- dependencies
296 win_res.$(RES): win_res.rc win_res.h putty.ico
297 ##--
298 win_res.$(RES):
299         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
300
301 ##-- dependencies
302 scp.$(RES): scp.rc scp.ico
303 ##--
304 scp.$(RES):
305         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
306
307 ##-- dependencies
308 pageant.$(RES): pageant.rc pageant.ico pageants.ico
309 ##--
310 pageant.$(RES):
311         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
312
313 ##-- dependencies
314 puttygen.$(RES): puttygen.rc puttygen.ico
315 ##--
316 puttygen.$(RES):
317         rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 puttygen.rc
318
319 clean: tidy
320         del *.exe
321
322 tidy:
323         del *.obj
324         del *.res
325         del *.pch
326         del *.aps
327         del *.ilk
328         del *.pdb
329         del *.rsp
330         del *.dsp
331         del *.dsw
332         del *.ncb
333         del *.opt
334         del *.plg
335         del *.map