OSDN Git Service

5b03b95cc02a7d4d583ef98b2ebeb1b408090351
[ffftp/ffftp.git] / putty / UNIX / MAKEFILE.UX
1 # Makefile for putty under Unix.\r
2 #\r
3 # This file was created by `mkfiles.pl' from the `Recipe' file.\r
4 # DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.\r
5 #\r
6 # Extra options you can set:\r
7 #\r
8 #  - VER="-DSNAPSHOT=1999-01-25 -DSVN_REV=1234"\r
9 #      Generates executables whose About box report them as being a\r
10 #      development snapshot. SVN_REV is a Subversion revision number.\r
11 #\r
12 #  - VER=-DRELEASE=0.43\r
13 #      Generates executables whose About box report them as being a\r
14 #      release version.\r
15 #\r
16 #  - COMPAT=-DAUTO_WINSOCK (Windows only)\r
17 #      Causes PuTTY to assume that <windows.h> includes its own WinSock\r
18 #      header file, so that it won't try to include <winsock.h>.\r
19 #\r
20 #  - COMPAT=-DWINSOCK_TWO (Windows only)\r
21 #      Causes the PuTTY utilities to include <winsock2.h> instead of\r
22 #      <winsock.h>, except Plink which _needs_ WinSock 2 so it already\r
23 #      does this.\r
24 #\r
25 #  - COMPAT=-DNO_SECURITY (Windows only)\r
26 #      Disables Pageant's use of <aclapi.h>, which is not available\r
27 #      with some development environments (such as older versions of\r
28 #      the Cygwin/mingw GNU toolchain). This means that Pageant\r
29 #      won't care about the local user ID of processes accessing it; a\r
30 #      version of Pageant built with this option will therefore refuse\r
31 #      to run under NT-series OSes on security grounds (although it\r
32 #      will run fine on Win95-series OSes where there is no access\r
33 #      control anyway).\r
34 #\r
35 #  - COMPAT=-DNO_MULTIMON (Windows only)\r
36 #      Disables PuTTY's use of <multimon.h>, which is not available\r
37 #      with some development environments. This means that PuTTY's\r
38 #      full-screen mode (configurable to work on Alt-Enter) will\r
39 #      not behave usefully in a multi-monitor environment.\r
40 #\r
41 #      Note that this definition is always enabled in the Cygwin\r
42 #      build, since at the time of writing this <multimon.h> is\r
43 #      known not to be available in Cygwin.\r
44 #\r
45 #  - COMPAT=-DNO_HTMLHELP (Windows only)\r
46 #      Disables PuTTY's use of <htmlhelp.h>, which is not available\r
47 #      with some development environments. The resulting binary\r
48 #      will only look for an old-style WinHelp file (.HLP/.CNT), and\r
49 #      will ignore any .CHM file.\r
50 #\r
51 #      Note that this definition is always enabled in the Cygwin\r
52 #      build, since at the time of writing this <htmlhelp.h> is\r
53 #      known not to be available in Cygwin (although you can use\r
54 #      the htmlhelp.h supplied with HTML Help Workshop).\r
55 #\r
56 #  - RCFL=-DNO_MANIFESTS (Windows only)\r
57 #      Disables inclusion of XML application manifests in the PuTTY\r
58 #      binaries. This may be necessary to build for 64-bit Windows;\r
59 #      the manifests are only included to use the XP GUI style on\r
60 #      Windows XP, and the architecture tags are a lie on 64-bit.\r
61 #\r
62 #  - COMPAT=-DNO_IPV6\r
63 #      Disables PuTTY's ability to make IPv6 connections, enabling\r
64 #      it to compile under development environments which do not\r
65 #      support IPv6 in their header files.\r
66 #\r
67 #  - COMPAT=-DNO_GSSAPI\r
68 #      Disables PuTTY's ability to use GSSAPI functions for\r
69 #      authentication and key exchange.\r
70 #\r
71 #  - COMPAT=-DSTATIC_GSSAPI\r
72 #      Causes PuTTY to try to link statically against the GSSAPI\r
73 #      library instead of the default of doing it at run time.\r
74 #\r
75 #  - COMPAT=-DMSVC4 (Windows only)\r
76 #  - RCFL=-DMSVC4\r
77 #      Makes a couple of minor changes so that PuTTY compiles using\r
78 #      MSVC 4. You will also need -DNO_SECURITY and -DNO_MULTIMON.\r
79 #\r
80 #  - RCFL=-DASCIICTLS (Windows only)\r
81 #      Uses ASCII rather than Unicode to specify the tab control in\r
82 #      the resource file. Probably most useful when compiling with\r
83 #      Cygnus/mingw32, whose resource compiler may have less of a\r
84 #      problem with it.\r
85 #\r
86 #  - XFLAGS=-DTELNET_DEFAULT\r
87 #      Causes PuTTY to default to the Telnet protocol (in the absence\r
88 #      of Default Settings and so on to the contrary). Normally PuTTY\r
89 #      will default to SSH.\r
90 #\r
91 #  - XFLAGS=-DDEBUG\r
92 #      Causes PuTTY to enable internal debugging.\r
93 #\r
94 #  - XFLAGS=-DMALLOC_LOG\r
95 #      Causes PuTTY to emit a file called putty_mem.log, logging every\r
96 #      memory allocation and free, so you can track memory leaks.\r
97 #\r
98 #  - XFLAGS=-DMINEFIELD (Windows only)\r
99 #      Causes PuTTY to use a custom memory allocator, similar in\r
100 #      concept to Electric Fence, in place of regular malloc(). Wastes\r
101 #      huge amounts of RAM, but should cause heap-corruption bugs to\r
102 #      show up as GPFs at the point of failure rather than appearing\r
103 #      later on as second-level damage.\r
104 #\r
105 \r
106 # You can define this path to point at your tools if you need to\r
107 # TOOLPATH = /opt/gcc/bin\r
108 CC = $(TOOLPATH)cc\r
109 \r
110 -include Makefile.local\r
111 \r
112 unexport CFLAGS # work around a weird issue with krb5-config\r
113 \r
114 CFLAGS = -O2 -Wall -Werror -g -I.././ -I../charset/ -I../windows/ -I../unix/ \\r
115                 -I../macosx/ -D _FILE_OFFSET_BITS=64\r
116 ULDFLAGS = $(LDFLAGS)\r
117 INSTALL=install\r
118 INSTALL_PROGRAM=$(INSTALL)\r
119 INSTALL_DATA=$(INSTALL)\r
120 prefix=/usr/local\r
121 exec_prefix=$(prefix)\r
122 bindir=$(exec_prefix)/bin\r
123 mandir=$(prefix)/man\r
124 man1dir=$(mandir)/man1\r
125 \r
126 \r
127 .SUFFIXES:\r
128 \r
129 \r
130 all: plink pscp psftp puttygen\r
131 \r
132 plink: be_all_s.o cmdline.o cproxy.o ldisc.o logging.o misc.o pgssapi.o \\r
133                 pinger.o portfwd.o proxy.o raw.o rlogin.o settings.o ssh.o \\r
134                 sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \\r
135                 sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o sshpubk.o \\r
136                 sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o \\r
137                 telnet.o time.o timing.o tree234.o ux_x11.o uxagentc.o \\r
138                 uxcons.o uxgss.o uxmisc.o uxnet.o uxnoise.o uxplink.o \\r
139                 uxproxy.o uxsel.o uxser.o uxsignal.o uxstore.o version.o \\r
140                 wildcard.o x11fwd.o\r
141         $(CC) -o $@ be_all_s.o cmdline.o cproxy.o ldisc.o logging.o misc.o \\r
142                 pgssapi.o pinger.o portfwd.o proxy.o raw.o rlogin.o \\r
143                 settings.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o \\r
144                 sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o \\r
145                 sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o \\r
146                 sshsha.o sshzlib.o telnet.o time.o timing.o tree234.o \\r
147                 ux_x11.o uxagentc.o uxcons.o uxgss.o uxmisc.o uxnet.o \\r
148                 uxnoise.o uxplink.o uxproxy.o uxsel.o uxser.o uxsignal.o \\r
149                 uxstore.o version.o wildcard.o x11fwd.o $(ULDFLAGS) \r
150 \r
151 pscp: be_ssh.o cmdline.o cproxy.o int64.o logging.o misc.o pgssapi.o \\r
152                 pinger.o portfwd.o proxy.o pscp.o settings.o sftp.o ssh.o \\r
153                 sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \\r
154                 sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o sshpubk.o \\r
155                 sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o \\r
156                 time.o timing.o tree234.o uxagentc.o uxcons.o uxgss.o \\r
157                 uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o uxsftp.o \\r
158                 uxstore.o version.o wildcard.o x11fwd.o\r
159         $(CC) -o $@ be_ssh.o cmdline.o cproxy.o int64.o logging.o misc.o \\r
160                 pgssapi.o pinger.o portfwd.o proxy.o pscp.o settings.o \\r
161                 sftp.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \\r
162                 sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o \\r
163                 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
164                 sshzlib.o time.o timing.o tree234.o uxagentc.o uxcons.o \\r
165                 uxgss.o uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o \\r
166                 uxsftp.o uxstore.o version.o wildcard.o x11fwd.o $(ULDFLAGS)\r
167 \r
168 psftp: be_ssh.o cmdline.o cproxy.o int64.o logging.o misc.o pgssapi.o \\r
169                 pinger.o portfwd.o proxy.o psftp.o settings.o sftp.o ssh.o \\r
170                 sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \\r
171                 sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o sshpubk.o \\r
172                 sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o \\r
173                 time.o timing.o tree234.o uxagentc.o uxcons.o uxgss.o \\r
174                 uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o uxsftp.o \\r
175                 uxstore.o version.o wildcard.o x11fwd.o\r
176         $(CC) -o $@ be_ssh.o cmdline.o cproxy.o int64.o logging.o misc.o \\r
177                 pgssapi.o pinger.o portfwd.o proxy.o psftp.o settings.o \\r
178                 sftp.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \\r
179                 sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o \\r
180                 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
181                 sshzlib.o time.o timing.o tree234.o uxagentc.o uxcons.o \\r
182                 uxgss.o uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o \\r
183                 uxsftp.o uxstore.o version.o wildcard.o x11fwd.o $(ULDFLAGS)\r
184 \r
185 puttygen: cmdgen.o import.o misc.o notiming.o sshaes.o sshbn.o sshdes.o \\r
186                 sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o sshrand.o \\r
187                 sshrsa.o sshrsag.o sshsh256.o sshsh512.o sshsha.o time.o \\r
188                 tree234.o uxcons.o uxgen.o uxmisc.o uxnoise.o uxstore.o \\r
189                 version.o\r
190         $(CC) -o $@ cmdgen.o import.o misc.o notiming.o sshaes.o sshbn.o \\r
191                 sshdes.o sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o \\r
192                 sshrand.o sshrsa.o sshrsag.o sshsh256.o sshsh512.o sshsha.o \\r
193                 time.o tree234.o uxcons.o uxgen.o uxmisc.o uxnoise.o \\r
194                 uxstore.o version.o $(ULDFLAGS) \r
195 \r
196 be_all_s.o: ../be_all_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
197                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
198                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
199                 ../charset/charset.h\r
200         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all_s.c\r
201 be_none.o: ../be_none.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
202                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
203                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
204                 ../charset/charset.h\r
205         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_none.c\r
206 be_nos_s.o: ../be_nos_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
207                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
208                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
209                 ../charset/charset.h\r
210         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nos_s.c\r
211 be_ssh.o: ../be_ssh.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
212                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
213                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
214                 ../charset/charset.h\r
215         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_ssh.c\r
216 cmdgen.o: ../cmdgen.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
217                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
218                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
219                 ../windows/winhelp.h ../charset/charset.h\r
220         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdgen.c\r
221 cmdline.o: ../cmdline.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
222                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
223                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
224                 ../charset/charset.h\r
225         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdline.c\r
226 config.o: ../config.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
227                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
228                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
229                 ../windows/winhelp.h ../charset/charset.h\r
230         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../config.c\r
231 cproxy.o: ../cproxy.c ../putty.h ../ssh.h ../network.h ../proxy.h \\r
232                 ../puttyps.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
233                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
234                 ../windows/winhelp.h ../charset/charset.h\r
235         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cproxy.c\r
236 dialog.o: ../dialog.c ../putty.h ../dialog.h ../puttyps.h ../network.h \\r
237                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
238                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
239                 ../windows/winhelp.h ../charset/charset.h\r
240         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../dialog.c\r
241 fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h\r
242         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/fromucs.c\r
243 gtkcfg.o: ../unix/gtkcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
244                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
245                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
246                 ../windows/winhelp.h ../charset/charset.h\r
247         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcfg.c\r
248 gtkcols.o: ../unix/gtkcols.c ../unix/gtkcols.h\r
249         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcols.c\r
250 gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../unix/gtkfont.h ../putty.h \\r
251                 ../storage.h ../dialog.h ../tree234.h ../puttyps.h \\r
252                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
253                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
254                 ../charset/charset.h\r
255         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkdlg.c\r
256 gtkfont.o: ../unix/gtkfont.c ../putty.h ../unix/gtkfont.h ../tree234.h \\r
257                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
258                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
259                 ../windows/winhelp.h ../charset/charset.h\r
260         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkfont.c\r
261 gtkwin.o: ../unix/gtkwin.c ../putty.h ../terminal.h ../unix/gtkfont.h \\r
262                 ../puttyps.h ../network.h ../misc.h ../tree234.h \\r
263                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
264                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
265         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkwin.c\r
266 import.o: ../import.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \\r
267                 ../network.h ../puttymem.h ../tree234.h ../int64.h \\r
268                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
269                 ../windows/winhelp.h ../charset/charset.h\r
270         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../import.c\r
271 int64.o: ../int64.c ../int64.h\r
272         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../int64.c\r
273 ldisc.o: ../ldisc.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \\r
274                 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \\r
275                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
276                 ../windows/winhelp.h ../charset/charset.h\r
277         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldisc.c\r
278 ldiscucs.o: ../ldiscucs.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \\r
279                 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \\r
280                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
281                 ../windows/winhelp.h ../charset/charset.h\r
282         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldiscucs.c\r
283 localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h\r
284         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/localenc.c\r
285 logging.o: ../logging.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
286                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
287                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
288                 ../charset/charset.h\r
289         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../logging.c\r
290 macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h\r
291         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/macenc.c\r
292 mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h\r
293         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/mimeenc.c\r
294 minibidi.o: ../minibidi.c ../misc.h ../puttymem.h\r
295         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../minibidi.c\r
296 misc.o: ../misc.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
297                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
298                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
299                 ../charset/charset.h\r
300         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../misc.c\r
301 nocproxy.o: ../nocproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \\r
302                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
303                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
304                 ../windows/winhelp.h ../charset/charset.h\r
305         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocproxy.c\r
306 nogss.o: ../nogss.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
307                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
308                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
309                 ../charset/charset.h\r
310         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nogss.c\r
311 notiming.o: ../notiming.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
312                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
313                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
314                 ../charset/charset.h\r
315         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../notiming.c\r
316 osxctrls.o: ../macosx/osxctrls.m ../putty.h ../dialog.h ../macosx/osxclass.h \\r
317                 ../tree234.h ../puttyps.h ../network.h ../misc.h \\r
318                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
319                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
320         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxctrls.m\r
321 osxdlg.o: ../macosx/osxdlg.m ../putty.h ../storage.h ../dialog.h \\r
322                 ../macosx/osxclass.h ../puttyps.h ../network.h ../misc.h \\r
323                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
324                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
325                 ../charset/charset.h\r
326         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxdlg.m\r
327 osxmain.o: ../macosx/osxmain.m ../putty.h ../macosx/osxclass.h ../puttyps.h \\r
328                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
329                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
330                 ../windows/winhelp.h ../charset/charset.h\r
331         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxmain.m\r
332 osxsel.o: ../macosx/osxsel.m ../putty.h ../macosx/osxclass.h ../puttyps.h \\r
333                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
334                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
335                 ../windows/winhelp.h ../charset/charset.h\r
336         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxsel.m\r
337 osxwin.o: ../macosx/osxwin.m ../putty.h ../terminal.h ../macosx/osxclass.h \\r
338                 ../puttyps.h ../network.h ../misc.h ../tree234.h \\r
339                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
340                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
341         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxwin.m\r
342 pgssapi.o: ../pgssapi.c ../putty.h ../pgssapi.h ../puttyps.h ../network.h \\r
343                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
344                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
345                 ../windows/winhelp.h ../charset/charset.h\r
346         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pgssapi.c\r
347 pinger.o: ../pinger.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
348                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
349                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
350                 ../charset/charset.h\r
351         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pinger.c\r
352 portfwd.o: ../portfwd.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
353                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
354                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
355                 ../windows/winhelp.h ../charset/charset.h\r
356         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../portfwd.c\r
357 proxy.o: ../proxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \\r
358                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
359                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
360                 ../windows/winhelp.h ../charset/charset.h\r
361         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../proxy.c\r
362 pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.h ../storage.h \\r
363                 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
364                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
365                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
366         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pscp.c\r
367 psftp.o: ../psftp.c ../putty.h ../psftp.h ../storage.h ../ssh.h ../sftp.h \\r
368                 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
369                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
370                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
371         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psftp.c\r
372 raw.o: ../raw.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
373                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
374                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
375                 ../charset/charset.h\r
376         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../raw.c\r
377 rlogin.o: ../rlogin.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
378                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
379                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
380                 ../charset/charset.h\r
381         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../rlogin.c\r
382 sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h\r
383         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcs.c\r
384 sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h\r
385         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcsdat.c\r
386 sercfg.o: ../sercfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
387                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
388                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
389                 ../windows/winhelp.h ../charset/charset.h\r
390         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sercfg.c\r
391 settings.o: ../settings.c ../putty.h ../storage.h ../puttyps.h ../network.h \\r
392                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
393                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
394                 ../windows/winhelp.h ../charset/charset.h\r
395         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../settings.c\r
396 sftp.o: ../sftp.c ../misc.h ../int64.h ../tree234.h ../sftp.h ../puttymem.h\r
397         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftp.c\r
398 sizetip.o: ../windows/sizetip.c ../putty.h ../puttyps.h ../network.h \\r
399                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
400                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
401                 ../windows/winhelp.h ../charset/charset.h\r
402         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/sizetip.c\r
403 slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \\r
404                 ../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c\r
405         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/slookup.c\r
406 ssh.o: ../ssh.c ../putty.h ../tree234.h ../ssh.h ../sshgssc.h ../sshgss.h \\r
407                 ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \\r
408                 ../pgssapi.h ../windows/winstuff.h ../macosx/osx.h \\r
409                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
410         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh.c\r
411 sshaes.o: ../sshaes.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
412                 ../int64.h ../misc.h\r
413         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshaes.c\r
414 ssharcf.o: ../ssharcf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
415                 ../int64.h ../misc.h\r
416         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssharcf.c\r
417 sshblowf.o: ../sshblowf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
418                 ../int64.h ../misc.h\r
419         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblowf.c\r
420 sshbn.o: ../sshbn.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
421                 ../network.h ../int64.h\r
422         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshbn.c\r
423 sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
424                 ../int64.h ../misc.h\r
425         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrc.c\r
426 sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
427                 ../network.h ../int64.h\r
428         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrcda.c\r
429 sshdes.o: ../sshdes.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
430                 ../int64.h ../misc.h\r
431         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdes.c\r
432 sshdh.o: ../sshdh.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
433                 ../int64.h ../misc.h\r
434         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdh.c\r
435 sshdss.o: ../sshdss.c ../ssh.h ../misc.h ../puttymem.h ../tree234.h \\r
436                 ../network.h ../int64.h\r
437         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdss.c\r
438 sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
439                 ../network.h ../int64.h\r
440         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdssg.c\r
441 sshgssc.o: ../sshgssc.c ../putty.h ../sshgssc.h ../misc.h ../puttyps.h \\r
442                 ../network.h ../pgssapi.h ../sshgss.h ../puttymem.h \\r
443                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
444                 ../tree234.h ../windows/winhelp.h ../charset/charset.h\r
445         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshgssc.c\r
446 sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
447                 ../int64.h ../misc.h\r
448         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmd5.c\r
449 sshprime.o: ../sshprime.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
450                 ../int64.h ../misc.h\r
451         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprime.c\r
452 sshpubk.o: ../sshpubk.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \\r
453                 ../network.h ../puttymem.h ../tree234.h ../int64.h \\r
454                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
455                 ../windows/winhelp.h ../charset/charset.h\r
456         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshpubk.c\r
457 sshrand.o: ../sshrand.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
458                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
459                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
460                 ../windows/winhelp.h ../charset/charset.h\r
461         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrand.c\r
462 sshrsa.o: ../sshrsa.c ../ssh.h ../misc.h ../puttymem.h ../tree234.h \\r
463                 ../network.h ../int64.h\r
464         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsa.c\r
465 sshrsag.o: ../sshrsag.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
466                 ../int64.h ../misc.h\r
467         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsag.c\r
468 sshsh256.o: ../sshsh256.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
469                 ../int64.h ../misc.h\r
470         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh256.c\r
471 sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
472                 ../int64.h ../misc.h\r
473         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh512.c\r
474 sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
475                 ../int64.h ../misc.h\r
476         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha.c\r
477 sshzlib.o: ../sshzlib.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
478                 ../int64.h ../misc.h\r
479         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshzlib.c\r
480 telnet.o: ../telnet.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
481                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
482                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
483                 ../charset/charset.h\r
484         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../telnet.c\r
485 terminal.o: ../terminal.c ../putty.h ../terminal.h ../puttyps.h ../network.h \\r
486                 ../misc.h ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
487                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
488                 ../charset/charset.h\r
489         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../terminal.c\r
490 testback.o: ../testback.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
491                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
492                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
493                 ../charset/charset.h\r
494         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testback.c\r
495 time.o: ../time.c\r
496         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../time.c\r
497 timing.o: ../timing.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
498                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
499                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
500                 ../charset/charset.h\r
501         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../timing.c\r
502 toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h\r
503         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/toucs.c\r
504 tree234.o: ../tree234.c ../puttymem.h ../tree234.h\r
505         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../tree234.c\r
506 utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h\r
507         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/utf8.c\r
508 ux_x11.o: ../unix/ux_x11.c ../putty.h ../ssh.h ../network.h ../puttyps.h \\r
509                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
510                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
511                 ../windows/winhelp.h ../charset/charset.h\r
512         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/ux_x11.c\r
513 uxagentc.o: ../unix/uxagentc.c ../putty.h ../misc.h ../tree234.h \\r
514                 ../puttymem.h ../puttyps.h ../network.h \\r
515                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
516                 ../windows/winhelp.h ../charset/charset.h\r
517         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxagentc.c\r
518 uxcfg.o: ../unix/uxcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
519                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
520                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
521                 ../windows/winhelp.h ../charset/charset.h\r
522         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcfg.c\r
523 uxcons.o: ../unix/uxcons.c ../putty.h ../storage.h ../ssh.h ../puttyps.h \\r
524                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
525                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
526                 ../windows/winhelp.h ../charset/charset.h\r
527         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcons.c\r
528 uxgen.o: ../unix/uxgen.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
529                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
530                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
531                 ../charset/charset.h\r
532         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgen.c\r
533 uxgss.o: ../unix/uxgss.c ../putty.h ../pgssapi.h ../sshgss.h ../sshgssc.h \\r
534                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
535                 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \\r
536                 ../windows/winhelp.h ../charset/charset.h\r
537         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgss.c\r
538 uxmisc.o: ../unix/uxmisc.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
539                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
540                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
541                 ../charset/charset.h\r
542         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxmisc.c\r
543 uxnet.o: ../unix/uxnet.c ../putty.h ../network.h ../tree234.h ../puttyps.h \\r
544                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
545                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
546                 ../charset/charset.h\r
547         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnet.c\r
548 uxnoise.o: ../unix/uxnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \\r
549                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
550                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
551                 ../windows/winhelp.h ../charset/charset.h\r
552         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnoise.c\r
553 uxplink.o: ../unix/uxplink.c ../putty.h ../storage.h ../tree234.h \\r
554                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
555                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
556                 ../windows/winhelp.h ../charset/charset.h\r
557         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxplink.c\r
558 uxprint.o: ../unix/uxprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
559                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
560                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
561                 ../charset/charset.h\r
562         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxprint.c\r
563 uxproxy.o: ../unix/uxproxy.c ../tree234.h ../putty.h ../network.h ../proxy.h \\r
564                 ../puttyps.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
565                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
566                 ../charset/charset.h\r
567         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxproxy.c\r
568 uxpterm.o: ../unix/uxpterm.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
569                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
570                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
571                 ../charset/charset.h\r
572         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpterm.c\r
573 uxpty.o: ../unix/uxpty.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
574                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
575                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
576                 ../charset/charset.h\r
577         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpty.c\r
578 uxputty.o: ../unix/uxputty.c ../putty.h ../storage.h ../puttyps.h \\r
579                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
580                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
581                 ../windows/winhelp.h ../charset/charset.h\r
582         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxputty.c\r
583 uxsel.o: ../unix/uxsel.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
584                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
585                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
586                 ../charset/charset.h\r
587         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsel.c\r
588 uxser.o: ../unix/uxser.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
589                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
590                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
591                 ../charset/charset.h\r
592         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxser.c\r
593 uxsftp.o: ../unix/uxsftp.c ../putty.h ../ssh.h ../psftp.h ../int64.h \\r
594                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
595                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
596                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
597         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftp.c\r
598 uxsignal.o: ../unix/uxsignal.c\r
599         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsignal.c\r
600 uxstore.o: ../unix/uxstore.c ../putty.h ../storage.h ../tree234.h \\r
601                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
602                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
603                 ../windows/winhelp.h ../charset/charset.h\r
604         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxstore.c\r
605 uxucs.o: ../unix/uxucs.c ../putty.h ../charset/charset.h ../terminal.h \\r
606                 ../misc.h ../puttyps.h ../network.h ../tree234.h \\r
607                 ../puttymem.h ../windows/winstuff.h ../macosx/osx.h \\r
608                 ../unix/unix.h ../windows/winhelp.h\r
609         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxucs.c\r
610 version.o: ../version.c\r
611         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../version.c\r
612 wcwidth.o: ../wcwidth.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
613                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
614                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
615                 ../charset/charset.h\r
616         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wcwidth.c\r
617 wildcard.o: ../wildcard.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
618                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
619                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
620                 ../charset/charset.h\r
621         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wildcard.c\r
622 wincfg.o: ../windows/wincfg.c ../putty.h ../dialog.h ../storage.h \\r
623                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
624                 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \\r
625                 ../windows/winhelp.h ../charset/charset.h\r
626         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincfg.c\r
627 wincons.o: ../windows/wincons.c ../putty.h ../storage.h ../ssh.h \\r
628                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
629                 ../tree234.h ../int64.h ../windows/winstuff.h \\r
630                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
631                 ../charset/charset.h\r
632         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincons.c\r
633 winctrls.o: ../windows/winctrls.c ../putty.h ../misc.h ../dialog.h \\r
634                 ../puttyps.h ../network.h ../puttymem.h \\r
635                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
636                 ../tree234.h ../windows/winhelp.h ../charset/charset.h\r
637         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winctrls.c\r
638 windefs.o: ../windows/windefs.c ../putty.h ../puttyps.h ../network.h \\r
639                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
640                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
641                 ../windows/winhelp.h ../charset/charset.h\r
642         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windefs.c\r
643 windlg.o: ../windows/windlg.c ../putty.h ../ssh.h ../windows/win_res.h \\r
644                 ../storage.h ../dialog.h ../puttyps.h ../network.h ../misc.h \\r
645                 ../puttymem.h ../tree234.h ../int64.h ../windows/winstuff.h \\r
646                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
647                 ../charset/charset.h\r
648         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windlg.c\r
649 window.o: ../windows/window.c ../putty.h ../terminal.h ../storage.h \\r
650                 ../windows/win_res.h ../puttyps.h ../network.h ../misc.h \\r
651                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
652                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
653                 ../charset/charset.h\r
654         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/window.c\r
655 wingss.o: ../windows/wingss.c ../putty.h ../pgssapi.h ../sshgss.h \\r
656                 ../sshgssc.h ../misc.h ../puttyps.h ../network.h \\r
657                 ../puttymem.h ../windows/winstuff.h ../macosx/osx.h \\r
658                 ../unix/unix.h ../tree234.h ../windows/winhelp.h \\r
659                 ../charset/charset.h\r
660         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wingss.c\r
661 winhandl.o: ../windows/winhandl.c ../putty.h ../puttyps.h ../network.h \\r
662                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
663                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
664                 ../windows/winhelp.h ../charset/charset.h\r
665         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhandl.c\r
666 winhelp.o: ../windows/winhelp.c ../putty.h ../puttyps.h ../network.h \\r
667                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
668                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
669                 ../windows/winhelp.h ../charset/charset.h\r
670         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhelp.c\r
671 winjump.o: ../windows/winjump.c ../putty.h ../storage.h ../puttyps.h \\r
672                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
673                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
674                 ../windows/winhelp.h ../charset/charset.h\r
675         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winjump.c\r
676 winmisc.o: ../windows/winmisc.c ../putty.h ../puttyps.h ../network.h \\r
677                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
678                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
679                 ../windows/winhelp.h ../charset/charset.h\r
680         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winmisc.c\r
681 winnet.o: ../windows/winnet.c ../putty.h ../network.h ../tree234.h \\r
682                 ../puttyps.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
683                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
684                 ../charset/charset.h\r
685         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnet.c\r
686 winnoise.o: ../windows/winnoise.c ../putty.h ../ssh.h ../storage.h \\r
687                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
688                 ../tree234.h ../int64.h ../windows/winstuff.h \\r
689                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
690                 ../charset/charset.h\r
691         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnoise.c\r
692 winnojmp.o: ../windows/winnojmp.c\r
693         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnojmp.c\r
694 winpgen.o: ../windows/winpgen.c ../putty.h ../ssh.h ../puttyps.h \\r
695                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
696                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
697                 ../windows/winhelp.h ../charset/charset.h\r
698         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgen.c\r
699 winpgnt.o: ../windows/winpgnt.c ../putty.h ../ssh.h ../misc.h ../tree234.h \\r
700                 ../puttyps.h ../network.h ../puttymem.h ../int64.h \\r
701                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
702                 ../windows/winhelp.h ../charset/charset.h\r
703         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgnt.c\r
704 winpgntc.o: ../windows/winpgntc.c ../putty.h ../puttyps.h ../network.h \\r
705                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
706                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
707                 ../windows/winhelp.h ../charset/charset.h\r
708         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgntc.c\r
709 winplink.o: ../windows/winplink.c ../putty.h ../storage.h ../tree234.h \\r
710                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
711                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
712                 ../windows/winhelp.h ../charset/charset.h\r
713         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winplink.c\r
714 winprint.o: ../windows/winprint.c ../putty.h ../puttyps.h ../network.h \\r
715                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
716                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
717                 ../windows/winhelp.h ../charset/charset.h\r
718         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winprint.c\r
719 winproxy.o: ../windows/winproxy.c ../tree234.h ../putty.h ../network.h \\r
720                 ../proxy.h ../puttyps.h ../misc.h ../windows/winstuff.h \\r
721                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
722                 ../windows/winhelp.h ../charset/charset.h\r
723         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winproxy.c\r
724 winser.o: ../windows/winser.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
725                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
726                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
727                 ../charset/charset.h\r
728         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winser.c\r
729 winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../ssh.h ../int64.h \\r
730                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
731                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
732                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
733         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsftp.c\r
734 winstore.o: ../windows/winstore.c ../putty.h ../storage.h ../puttyps.h \\r
735                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
736                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
737                 ../windows/winhelp.h ../charset/charset.h\r
738         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winstore.c\r
739 wintime.o: ../windows/wintime.c ../putty.h ../puttyps.h ../network.h \\r
740                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
741                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
742                 ../windows/winhelp.h ../charset/charset.h\r
743         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wintime.c\r
744 winucs.o: ../windows/winucs.c ../putty.h ../terminal.h ../misc.h \\r
745                 ../puttyps.h ../network.h ../tree234.h ../puttymem.h \\r
746                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
747                 ../windows/winhelp.h ../charset/charset.h\r
748         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winucs.c\r
749 winutils.o: ../windows/winutils.c ../putty.h ../misc.h ../puttyps.h \\r
750                 ../network.h ../puttymem.h ../windows/winstuff.h \\r
751                 ../macosx/osx.h ../unix/unix.h ../tree234.h \\r
752                 ../windows/winhelp.h ../charset/charset.h\r
753         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winutils.c\r
754 winx11.o: ../windows/winx11.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
755                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
756                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
757                 ../windows/winhelp.h ../charset/charset.h\r
758         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winx11.c\r
759 x11fwd.o: ../x11fwd.c ../putty.h ../ssh.h ../tree234.h ../puttyps.h \\r
760                 ../network.h ../misc.h ../puttymem.h ../int64.h \\r
761                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
762                 ../windows/winhelp.h ../charset/charset.h\r
763         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../x11fwd.c\r
764 xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h\r
765         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/xenc.c\r
766 xkeysym.o: ../unix/xkeysym.c ../misc.h ../puttymem.h\r
767         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xkeysym.c\r
768 xpmptcfg.o: ../unix/xpmptcfg.c\r
769         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmptcfg.c\r
770 xpmpterm.o: ../unix/xpmpterm.c\r
771         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpterm.c\r
772 xpmpucfg.o: ../unix/xpmpucfg.c\r
773         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpucfg.c\r
774 xpmputty.o: ../unix/xpmputty.c\r
775         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmputty.c\r
776 \r
777 \r
778 clean:\r
779         rm -f *.o plink pscp psftp puttygen\r
780 \r
781 FORCE:\r