OSDN Git Service

Add VC++ Project files for PuTTY DLL without exported functions.
[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_none.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_none.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_none.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_none.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 cmdgen.o: ../cmdgen.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
212                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
213                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
214                 ../windows/winhelp.h ../charset/charset.h\r
215         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdgen.c\r
216 cmdline.o: ../cmdline.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
217                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
218                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
219                 ../charset/charset.h\r
220         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdline.c\r
221 config.o: ../config.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
222                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
223                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
224                 ../windows/winhelp.h ../charset/charset.h\r
225         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../config.c\r
226 cproxy.o: ../cproxy.c ../putty.h ../ssh.h ../network.h ../proxy.h \\r
227                 ../puttyps.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
228                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
229                 ../windows/winhelp.h ../charset/charset.h\r
230         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cproxy.c\r
231 dialog.o: ../dialog.c ../putty.h ../dialog.h ../puttyps.h ../network.h \\r
232                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
233                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
234                 ../windows/winhelp.h ../charset/charset.h\r
235         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../dialog.c\r
236 fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h\r
237         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/fromucs.c\r
238 gtkcfg.o: ../unix/gtkcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
239                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
240                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
241                 ../windows/winhelp.h ../charset/charset.h\r
242         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcfg.c\r
243 gtkcols.o: ../unix/gtkcols.c ../unix/gtkcols.h\r
244         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcols.c\r
245 gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../unix/gtkfont.h ../putty.h \\r
246                 ../storage.h ../dialog.h ../tree234.h ../puttyps.h \\r
247                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
248                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
249                 ../charset/charset.h\r
250         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkdlg.c\r
251 gtkfont.o: ../unix/gtkfont.c ../putty.h ../unix/gtkfont.h ../tree234.h \\r
252                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
253                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
254                 ../windows/winhelp.h ../charset/charset.h\r
255         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkfont.c\r
256 gtkwin.o: ../unix/gtkwin.c ../putty.h ../terminal.h ../unix/gtkfont.h \\r
257                 ../puttyps.h ../network.h ../misc.h ../tree234.h \\r
258                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
259                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
260         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkwin.c\r
261 import.o: ../import.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \\r
262                 ../network.h ../puttymem.h ../tree234.h ../int64.h \\r
263                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
264                 ../windows/winhelp.h ../charset/charset.h\r
265         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../import.c\r
266 int64.o: ../int64.c ../int64.h\r
267         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../int64.c\r
268 ldisc.o: ../ldisc.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \\r
269                 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \\r
270                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
271                 ../windows/winhelp.h ../charset/charset.h\r
272         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldisc.c\r
273 ldiscucs.o: ../ldiscucs.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 ../ldiscucs.c\r
278 localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h\r
279         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/localenc.c\r
280 logging.o: ../logging.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
281                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
282                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
283                 ../charset/charset.h\r
284         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../logging.c\r
285 macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h\r
286         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/macenc.c\r
287 mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h\r
288         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/mimeenc.c\r
289 minibidi.o: ../minibidi.c ../misc.h ../puttymem.h\r
290         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../minibidi.c\r
291 misc.o: ../misc.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
292                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
293                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
294                 ../charset/charset.h\r
295         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../misc.c\r
296 nocproxy.o: ../nocproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \\r
297                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
298                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
299                 ../windows/winhelp.h ../charset/charset.h\r
300         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocproxy.c\r
301 nogss.o: ../nogss.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
302                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
303                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
304                 ../charset/charset.h\r
305         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nogss.c\r
306 notiming.o: ../notiming.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 ../notiming.c\r
311 osxctrls.o: ../macosx/osxctrls.m ../putty.h ../dialog.h ../macosx/osxclass.h \\r
312                 ../tree234.h ../puttyps.h ../network.h ../misc.h \\r
313                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
314                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
315         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxctrls.m\r
316 osxdlg.o: ../macosx/osxdlg.m ../putty.h ../storage.h ../dialog.h \\r
317                 ../macosx/osxclass.h ../puttyps.h ../network.h ../misc.h \\r
318                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
319                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
320                 ../charset/charset.h\r
321         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxdlg.m\r
322 osxmain.o: ../macosx/osxmain.m ../putty.h ../macosx/osxclass.h ../puttyps.h \\r
323                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
324                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
325                 ../windows/winhelp.h ../charset/charset.h\r
326         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxmain.m\r
327 osxsel.o: ../macosx/osxsel.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/osxsel.m\r
332 osxwin.o: ../macosx/osxwin.m ../putty.h ../terminal.h ../macosx/osxclass.h \\r
333                 ../puttyps.h ../network.h ../misc.h ../tree234.h \\r
334                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
335                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
336         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxwin.m\r
337 pgssapi.o: ../pgssapi.c ../putty.h ../pgssapi.h ../puttyps.h ../network.h \\r
338                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
339                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
340                 ../windows/winhelp.h ../charset/charset.h\r
341         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pgssapi.c\r
342 pinger.o: ../pinger.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
343                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
344                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
345                 ../charset/charset.h\r
346         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pinger.c\r
347 portfwd.o: ../portfwd.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
348                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
349                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
350                 ../windows/winhelp.h ../charset/charset.h\r
351         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../portfwd.c\r
352 proxy.o: ../proxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \\r
353                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
354                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
355                 ../windows/winhelp.h ../charset/charset.h\r
356         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../proxy.c\r
357 pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.h ../storage.h \\r
358                 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
359                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
360                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
361         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pscp.c\r
362 psftp.o: ../psftp.c ../putty.h ../psftp.h ../storage.h ../ssh.h ../sftp.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 ../psftp.c\r
367 raw.o: ../raw.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
368                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
369                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
370                 ../charset/charset.h\r
371         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../raw.c\r
372 rlogin.o: ../rlogin.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 ../rlogin.c\r
377 sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h\r
378         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcs.c\r
379 sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h\r
380         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcsdat.c\r
381 sercfg.o: ../sercfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
382                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
383                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
384                 ../windows/winhelp.h ../charset/charset.h\r
385         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sercfg.c\r
386 settings.o: ../settings.c ../putty.h ../storage.h ../puttyps.h ../network.h \\r
387                 ../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 ../settings.c\r
391 sftp.o: ../sftp.c ../misc.h ../int64.h ../tree234.h ../sftp.h ../puttymem.h\r
392         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftp.c\r
393 sizetip.o: ../windows/sizetip.c ../putty.h ../puttyps.h ../network.h \\r
394                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
395                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
396                 ../windows/winhelp.h ../charset/charset.h\r
397         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/sizetip.c\r
398 slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \\r
399                 ../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c\r
400         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/slookup.c\r
401 ssh.o: ../ssh.c ../putty.h ../tree234.h ../ssh.h ../sshgssc.h ../sshgss.h \\r
402                 ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \\r
403                 ../pgssapi.h ../windows/winstuff.h ../macosx/osx.h \\r
404                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
405         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh.c\r
406 sshaes.o: ../sshaes.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
407                 ../int64.h ../misc.h\r
408         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshaes.c\r
409 ssharcf.o: ../ssharcf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
410                 ../int64.h ../misc.h\r
411         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssharcf.c\r
412 sshblowf.o: ../sshblowf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
413                 ../int64.h ../misc.h\r
414         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblowf.c\r
415 sshbn.o: ../sshbn.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
416                 ../network.h ../int64.h\r
417         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshbn.c\r
418 sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
419                 ../int64.h ../misc.h\r
420         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrc.c\r
421 sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
422                 ../network.h ../int64.h\r
423         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrcda.c\r
424 sshdes.o: ../sshdes.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
425                 ../int64.h ../misc.h\r
426         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdes.c\r
427 sshdh.o: ../sshdh.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
428                 ../int64.h ../misc.h\r
429         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdh.c\r
430 sshdss.o: ../sshdss.c ../ssh.h ../misc.h ../puttymem.h ../tree234.h \\r
431                 ../network.h ../int64.h\r
432         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdss.c\r
433 sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
434                 ../network.h ../int64.h\r
435         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdssg.c\r
436 sshgssc.o: ../sshgssc.c ../putty.h ../sshgssc.h ../misc.h ../puttyps.h \\r
437                 ../network.h ../pgssapi.h ../sshgss.h ../puttymem.h \\r
438                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
439                 ../tree234.h ../windows/winhelp.h ../charset/charset.h\r
440         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshgssc.c\r
441 sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
442                 ../int64.h ../misc.h\r
443         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmd5.c\r
444 sshprime.o: ../sshprime.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
445                 ../int64.h ../misc.h\r
446         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprime.c\r
447 sshpubk.o: ../sshpubk.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \\r
448                 ../network.h ../puttymem.h ../tree234.h ../int64.h \\r
449                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
450                 ../windows/winhelp.h ../charset/charset.h\r
451         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshpubk.c\r
452 sshrand.o: ../sshrand.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
453                 ../misc.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 ../sshrand.c\r
457 sshrsa.o: ../sshrsa.c ../ssh.h ../misc.h ../puttymem.h ../tree234.h \\r
458                 ../network.h ../int64.h\r
459         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsa.c\r
460 sshrsag.o: ../sshrsag.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
461                 ../int64.h ../misc.h\r
462         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsag.c\r
463 sshsh256.o: ../sshsh256.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
464                 ../int64.h ../misc.h\r
465         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh256.c\r
466 sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
467                 ../int64.h ../misc.h\r
468         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh512.c\r
469 sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
470                 ../int64.h ../misc.h\r
471         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha.c\r
472 sshzlib.o: ../sshzlib.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
473                 ../int64.h ../misc.h\r
474         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshzlib.c\r
475 telnet.o: ../telnet.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
476                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
477                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
478                 ../charset/charset.h\r
479         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../telnet.c\r
480 terminal.o: ../terminal.c ../putty.h ../terminal.h ../puttyps.h ../network.h \\r
481                 ../misc.h ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
482                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
483                 ../charset/charset.h\r
484         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../terminal.c\r
485 testback.o: ../testback.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
486                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
487                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
488                 ../charset/charset.h\r
489         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testback.c\r
490 time.o: ../time.c\r
491         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../time.c\r
492 timing.o: ../timing.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
493                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
494                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
495                 ../charset/charset.h\r
496         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../timing.c\r
497 toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h\r
498         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/toucs.c\r
499 tree234.o: ../tree234.c ../puttymem.h ../tree234.h\r
500         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../tree234.c\r
501 utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h\r
502         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/utf8.c\r
503 ux_x11.o: ../unix/ux_x11.c ../putty.h ../ssh.h ../network.h ../puttyps.h \\r
504                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
505                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
506                 ../windows/winhelp.h ../charset/charset.h\r
507         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/ux_x11.c\r
508 uxagentc.o: ../unix/uxagentc.c ../putty.h ../misc.h ../tree234.h \\r
509                 ../puttymem.h ../puttyps.h ../network.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/uxagentc.c\r
513 uxcfg.o: ../unix/uxcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
514                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
515                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
516                 ../windows/winhelp.h ../charset/charset.h\r
517         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcfg.c\r
518 uxcons.o: ../unix/uxcons.c ../putty.h ../storage.h ../ssh.h ../puttyps.h \\r
519                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
520                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
521                 ../windows/winhelp.h ../charset/charset.h\r
522         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcons.c\r
523 uxgen.o: ../unix/uxgen.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
524                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
525                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
526                 ../charset/charset.h\r
527         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgen.c\r
528 uxgss.o: ../unix/uxgss.c ../putty.h ../pgssapi.h ../sshgss.h ../sshgssc.h \\r
529                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
530                 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \\r
531                 ../windows/winhelp.h ../charset/charset.h\r
532         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgss.c\r
533 uxmisc.o: ../unix/uxmisc.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
534                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
535                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
536                 ../charset/charset.h\r
537         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxmisc.c\r
538 uxnet.o: ../unix/uxnet.c ../putty.h ../network.h ../tree234.h ../puttyps.h \\r
539                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
540                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
541                 ../charset/charset.h\r
542         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnet.c\r
543 uxnoise.o: ../unix/uxnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \\r
544                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
545                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
546                 ../windows/winhelp.h ../charset/charset.h\r
547         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnoise.c\r
548 uxplink.o: ../unix/uxplink.c ../putty.h ../storage.h ../tree234.h \\r
549                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
550                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
551                 ../windows/winhelp.h ../charset/charset.h\r
552         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxplink.c\r
553 uxprint.o: ../unix/uxprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
554                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
555                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
556                 ../charset/charset.h\r
557         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxprint.c\r
558 uxproxy.o: ../unix/uxproxy.c ../tree234.h ../putty.h ../network.h ../proxy.h \\r
559                 ../puttyps.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
560                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
561                 ../charset/charset.h\r
562         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxproxy.c\r
563 uxpterm.o: ../unix/uxpterm.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
564                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
565                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
566                 ../charset/charset.h\r
567         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpterm.c\r
568 uxpty.o: ../unix/uxpty.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
569                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
570                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
571                 ../charset/charset.h\r
572         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpty.c\r
573 uxputty.o: ../unix/uxputty.c ../putty.h ../storage.h ../puttyps.h \\r
574                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
575                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
576                 ../windows/winhelp.h ../charset/charset.h\r
577         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxputty.c\r
578 uxsel.o: ../unix/uxsel.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
579                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
580                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
581                 ../charset/charset.h\r
582         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsel.c\r
583 uxser.o: ../unix/uxser.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/uxser.c\r
588 uxsftp.o: ../unix/uxsftp.c ../putty.h ../ssh.h ../psftp.h ../int64.h \\r
589                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
590                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
591                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
592         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftp.c\r
593 uxsignal.o: ../unix/uxsignal.c\r
594         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsignal.c\r
595 uxstore.o: ../unix/uxstore.c ../putty.h ../storage.h ../tree234.h \\r
596                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
597                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
598                 ../windows/winhelp.h ../charset/charset.h\r
599         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxstore.c\r
600 uxucs.o: ../unix/uxucs.c ../putty.h ../charset/charset.h ../terminal.h \\r
601                 ../misc.h ../puttyps.h ../network.h ../tree234.h \\r
602                 ../puttymem.h ../windows/winstuff.h ../macosx/osx.h \\r
603                 ../unix/unix.h ../windows/winhelp.h\r
604         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxucs.c\r
605 version.o: ../version.c\r
606         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../version.c\r
607 wcwidth.o: ../wcwidth.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
608                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
609                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
610                 ../charset/charset.h\r
611         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wcwidth.c\r
612 wildcard.o: ../wildcard.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 ../wildcard.c\r
617 wincfg.o: ../windows/wincfg.c ../putty.h ../dialog.h ../storage.h \\r
618                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
619                 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \\r
620                 ../windows/winhelp.h ../charset/charset.h\r
621         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincfg.c\r
622 wincons.o: ../windows/wincons.c ../putty.h ../storage.h ../ssh.h \\r
623                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
624                 ../tree234.h ../int64.h ../windows/winstuff.h \\r
625                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
626                 ../charset/charset.h\r
627         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincons.c\r
628 winctrls.o: ../windows/winctrls.c ../putty.h ../misc.h ../dialog.h \\r
629                 ../puttyps.h ../network.h ../puttymem.h \\r
630                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
631                 ../tree234.h ../windows/winhelp.h ../charset/charset.h\r
632         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winctrls.c\r
633 windefs.o: ../windows/windefs.c ../putty.h ../puttyps.h ../network.h \\r
634                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
635                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
636                 ../windows/winhelp.h ../charset/charset.h\r
637         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windefs.c\r
638 windlg.o: ../windows/windlg.c ../putty.h ../ssh.h ../windows/win_res.h \\r
639                 ../storage.h ../dialog.h ../puttyps.h ../network.h ../misc.h \\r
640                 ../puttymem.h ../tree234.h ../int64.h ../windows/winstuff.h \\r
641                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
642                 ../charset/charset.h\r
643         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windlg.c\r
644 window.o: ../windows/window.c ../putty.h ../terminal.h ../storage.h \\r
645                 ../windows/win_res.h ../puttyps.h ../network.h ../misc.h \\r
646                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
647                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
648                 ../charset/charset.h\r
649         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/window.c\r
650 wingss.o: ../windows/wingss.c ../putty.h ../pgssapi.h ../sshgss.h \\r
651                 ../sshgssc.h ../misc.h ../puttyps.h ../network.h \\r
652                 ../puttymem.h ../windows/winstuff.h ../macosx/osx.h \\r
653                 ../unix/unix.h ../tree234.h ../windows/winhelp.h \\r
654                 ../charset/charset.h\r
655         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wingss.c\r
656 winhandl.o: ../windows/winhandl.c ../putty.h ../puttyps.h ../network.h \\r
657                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
658                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
659                 ../windows/winhelp.h ../charset/charset.h\r
660         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhandl.c\r
661 winhelp.o: ../windows/winhelp.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/winhelp.c\r
666 winjump.o: ../windows/winjump.c ../putty.h ../storage.h ../puttyps.h \\r
667                 ../network.h ../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/winjump.c\r
671 winmisc.o: ../windows/winmisc.c ../putty.h ../puttyps.h ../network.h \\r
672                 ../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/winmisc.c\r
676 winnet.o: ../windows/winnet.c ../putty.h ../network.h ../tree234.h \\r
677                 ../puttyps.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
678                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
679                 ../charset/charset.h\r
680         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnet.c\r
681 winnoise.o: ../windows/winnoise.c ../putty.h ../ssh.h ../storage.h \\r
682                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
683                 ../tree234.h ../int64.h ../windows/winstuff.h \\r
684                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
685                 ../charset/charset.h\r
686         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnoise.c\r
687 winnojmp.o: ../windows/winnojmp.c\r
688         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnojmp.c\r
689 winpgen.o: ../windows/winpgen.c ../putty.h ../ssh.h ../puttyps.h \\r
690                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
691                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
692                 ../windows/winhelp.h ../charset/charset.h\r
693         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgen.c\r
694 winpgnt.o: ../windows/winpgnt.c ../putty.h ../ssh.h ../misc.h ../tree234.h \\r
695                 ../puttyps.h ../network.h ../puttymem.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/winpgnt.c\r
699 winpgntc.o: ../windows/winpgntc.c ../putty.h ../puttyps.h ../network.h \\r
700                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
701                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
702                 ../windows/winhelp.h ../charset/charset.h\r
703         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgntc.c\r
704 winplink.o: ../windows/winplink.c ../putty.h ../storage.h ../tree234.h \\r
705                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
706                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
707                 ../windows/winhelp.h ../charset/charset.h\r
708         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winplink.c\r
709 winprint.o: ../windows/winprint.c ../putty.h ../puttyps.h ../network.h \\r
710                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
711                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
712                 ../windows/winhelp.h ../charset/charset.h\r
713         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winprint.c\r
714 winproxy.o: ../windows/winproxy.c ../tree234.h ../putty.h ../network.h \\r
715                 ../proxy.h ../puttyps.h ../misc.h ../windows/winstuff.h \\r
716                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
717                 ../windows/winhelp.h ../charset/charset.h\r
718         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winproxy.c\r
719 winser.o: ../windows/winser.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
720                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
721                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
722                 ../charset/charset.h\r
723         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winser.c\r
724 winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../ssh.h ../int64.h \\r
725                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
726                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
727                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
728         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsftp.c\r
729 winstore.o: ../windows/winstore.c ../putty.h ../storage.h ../puttyps.h \\r
730                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
731                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
732                 ../windows/winhelp.h ../charset/charset.h\r
733         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winstore.c\r
734 wintime.o: ../windows/wintime.c ../putty.h ../puttyps.h ../network.h \\r
735                 ../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/wintime.c\r
739 winucs.o: ../windows/winucs.c ../putty.h ../terminal.h ../misc.h \\r
740                 ../puttyps.h ../network.h ../tree234.h ../puttymem.h \\r
741                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
742                 ../windows/winhelp.h ../charset/charset.h\r
743         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winucs.c\r
744 winutils.o: ../windows/winutils.c ../putty.h ../misc.h ../puttyps.h \\r
745                 ../network.h ../puttymem.h ../windows/winstuff.h \\r
746                 ../macosx/osx.h ../unix/unix.h ../tree234.h \\r
747                 ../windows/winhelp.h ../charset/charset.h\r
748         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winutils.c\r
749 winx11.o: ../windows/winx11.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
750                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
751                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
752                 ../windows/winhelp.h ../charset/charset.h\r
753         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winx11.c\r
754 x11fwd.o: ../x11fwd.c ../putty.h ../ssh.h ../tree234.h ../puttyps.h \\r
755                 ../network.h ../misc.h ../puttymem.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 ../x11fwd.c\r
759 xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h\r
760         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/xenc.c\r
761 xkeysym.o: ../unix/xkeysym.c ../misc.h ../puttymem.h\r
762         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xkeysym.c\r
763 xpmptcfg.o: ../unix/xpmptcfg.c\r
764         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmptcfg.c\r
765 xpmpterm.o: ../unix/xpmpterm.c\r
766         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpterm.c\r
767 xpmpucfg.o: ../unix/xpmpucfg.c\r
768         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpucfg.c\r
769 xpmputty.o: ../unix/xpmputty.c\r
770         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmputty.c\r
771 \r
772 \r
773 clean:\r
774         rm -f *.o plink pscp psftp puttygen\r
775 \r
776 FORCE:\r