OSDN Git Service

Add VC++ Project files for PuTTY DLL without exported functions.
[ffftp/ffftp.git] / putty / WINDOWS / MAKEFILE.CYG
1 # Makefile for putty under cygwin.\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 = c:\cygwin\bin\ # or similar, if you're running Windows\r
108 # TOOLPATH = /pkg/mingw32msvc/i386-mingw32msvc/bin/\r
109 CC = $(TOOLPATH)gcc\r
110 RC = $(TOOLPATH)windres\r
111 # Uncomment the following two lines to compile under Winelib\r
112 # CC = winegcc\r
113 # RC = wrc\r
114 # You may also need to tell windres where to find include files:\r
115 # RCINC = --include-dir c:\cygwin\include\\r
116 \r
117 CFLAGS = -mno-cygwin -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT \\r
118                 -D_NO_OLDNAMES -DNO_MULTIMON -DNO_HTMLHELP -I.././ \\r
119                 -I../charset/ -I../windows/ -I../unix/ -I../macosx/\r
120 LDFLAGS = -mno-cygwin -s\r
121 RCFLAGS = $(RCINC) --define WIN32=1 --define _WIN32=1 --define WINVER=0x0400\r
122 \r
123 # XXX GNU-ism, but it's probably all right for a Cygwin/MinGW Makefile.\r
124 RCFLAGS += $(patsubst -D%,--define %,$(VER))\r
125 # _WIN32_IE is required to expose identifiers that only make sense on\r
126 # systems with IE5+ installed, such as some arguments to SHGetFolderPath().\r
127 # WINVER etc perform a similar function for FlashWindowEx().\r
128 CFLAGS += -D_WIN32_IE=0x0500\r
129 CFLAGS += -DWINVER=0x0500 -D_WIN32_WINDOWS=0x0410 -D_WIN32_WINNT=0x0500\r
130 \r
131 .SUFFIXES:\r
132 \r
133 all: pageant.exe plink.exe pscp.exe psftp.exe putty.exe puttygen.exe \\r
134                 puttytel.exe\r
135 \r
136 pageant.exe: misc.o pageant.res.o sshaes.o sshbn.o sshdes.o sshdss.o \\r
137                 sshmd5.o sshpubk.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
138                 tree234.o version.o winhelp.o winmisc.o winpgnt.o winpgntc.o \\r
139                 winutils.o\r
140         $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,pageant.map misc.o \\r
141                 pageant.res.o sshaes.o sshbn.o sshdes.o sshdss.o sshmd5.o \\r
142                 sshpubk.o sshrsa.o sshsh256.o sshsh512.o sshsha.o tree234.o \\r
143                 version.o winhelp.o winmisc.o winpgnt.o winpgntc.o \\r
144                 winutils.o -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 \\r
145                 -lole32 -lshell32 -luser32 -lwinmm -lwinspool\r
146 \r
147 plink.exe: be_all_s.o cmdline.o cproxy.o ldisc.o logging.o misc.o pgssapi.o \\r
148                 pinger.o plink.res.o portfwd.o proxy.o raw.o rlogin.o \\r
149                 settings.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o \\r
150                 sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o \\r
151                 sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o \\r
152                 sshsha.o sshzlib.o telnet.o timing.o tree234.o version.o \\r
153                 wildcard.o wincons.o windefs.o wingss.o winhandl.o winmisc.o \\r
154                 winnet.o winnoise.o winnojmp.o winpgntc.o winplink.o \\r
155                 winproxy.o winser.o winstore.o wintime.o winx11.o x11fwd.o\r
156         $(CC) $(LDFLAGS) -o $@ -Wl,-Map,plink.map be_all_s.o cmdline.o \\r
157                 cproxy.o ldisc.o logging.o misc.o pgssapi.o pinger.o \\r
158                 plink.res.o portfwd.o proxy.o raw.o rlogin.o settings.o \\r
159                 ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \\r
160                 sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o \\r
161                 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
162                 sshzlib.o telnet.o timing.o tree234.o version.o wildcard.o \\r
163                 wincons.o windefs.o wingss.o winhandl.o winmisc.o winnet.o \\r
164                 winnoise.o winnojmp.o winpgntc.o winplink.o winproxy.o \\r
165                 winser.o winstore.o wintime.o winx11.o x11fwd.o -ladvapi32 \\r
166                 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lole32 -lshell32 \\r
167                 -luser32 -lwinmm -lwinspool\r
168 \r
169 pscp.exe: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pgssapi.o \\r
170                 pinger.o portfwd.o proxy.o pscp.o pscp.res.o settings.o \\r
171                 sftp.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \\r
172                 sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o \\r
173                 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
174                 sshzlib.o timing.o tree234.o version.o wildcard.o wincons.o \\r
175                 windefs.o wingss.o winhandl.o winmisc.o winnet.o winnoise.o \\r
176                 winnojmp.o winpgntc.o winproxy.o winsftp.o winstore.o \\r
177                 wintime.o x11fwd.o\r
178         $(CC) $(LDFLAGS) -o $@ -Wl,-Map,pscp.map be_none.o cmdline.o \\r
179                 cproxy.o int64.o logging.o misc.o pgssapi.o pinger.o \\r
180                 portfwd.o proxy.o pscp.o pscp.res.o settings.o sftp.o ssh.o \\r
181                 sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \\r
182                 sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o sshpubk.o \\r
183                 sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o \\r
184                 timing.o tree234.o version.o wildcard.o wincons.o windefs.o \\r
185                 wingss.o winhandl.o winmisc.o winnet.o winnoise.o winnojmp.o \\r
186                 winpgntc.o winproxy.o winsftp.o winstore.o wintime.o \\r
187                 x11fwd.o -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 \\r
188                 -lole32 -lshell32 -luser32 -lwinmm -lwinspool\r
189 \r
190 psftp.exe: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pgssapi.o \\r
191                 pinger.o portfwd.o proxy.o psftp.o psftp.res.o settings.o \\r
192                 sftp.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \\r
193                 sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o \\r
194                 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
195                 sshzlib.o timing.o tree234.o version.o wildcard.o wincons.o \\r
196                 windefs.o wingss.o winhandl.o winmisc.o winnet.o winnoise.o \\r
197                 winnojmp.o winpgntc.o winproxy.o winsftp.o winstore.o \\r
198                 wintime.o x11fwd.o\r
199         $(CC) $(LDFLAGS) -o $@ -Wl,-Map,psftp.map be_none.o cmdline.o \\r
200                 cproxy.o int64.o logging.o misc.o pgssapi.o pinger.o \\r
201                 portfwd.o proxy.o psftp.o psftp.res.o settings.o sftp.o \\r
202                 ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \\r
203                 sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o sshmd5.o \\r
204                 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \\r
205                 sshzlib.o timing.o tree234.o version.o wildcard.o wincons.o \\r
206                 windefs.o wingss.o winhandl.o winmisc.o winnet.o winnoise.o \\r
207                 winnojmp.o winpgntc.o winproxy.o winsftp.o winstore.o \\r
208                 wintime.o x11fwd.o -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 \\r
209                 -limm32 -lole32 -lshell32 -luser32 -lwinmm -lwinspool\r
210 \r
211 putty.exe: be_all_s.o cmdline.o config.o cproxy.o dialog.o ldisc.o \\r
212                 ldiscucs.o logging.o minibidi.o misc.o pgssapi.o pinger.o \\r
213                 portfwd.o proxy.o putty.res.o raw.o rlogin.o sercfg.o \\r
214                 settings.o sizetip.o ssh.o sshaes.o ssharcf.o sshblowf.o \\r
215                 sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \\r
216                 sshgssc.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o \\r
217                 sshsh512.o sshsha.o sshzlib.o telnet.o terminal.o timing.o \\r
218                 tree234.o version.o wcwidth.o wildcard.o wincfg.o winctrls.o \\r
219                 windefs.o windlg.o window.o wingss.o winhandl.o winhelp.o \\r
220                 winjump.o winmisc.o winnet.o winnoise.o winpgntc.o \\r
221                 winprint.o winproxy.o winser.o winstore.o wintime.o winucs.o \\r
222                 winutils.o winx11.o x11fwd.o\r
223         $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,putty.map be_all_s.o \\r
224                 cmdline.o config.o cproxy.o dialog.o ldisc.o ldiscucs.o \\r
225                 logging.o minibidi.o misc.o pgssapi.o pinger.o portfwd.o \\r
226                 proxy.o putty.res.o raw.o rlogin.o sercfg.o settings.o \\r
227                 sizetip.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o \\r
228                 sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshgssc.o \\r
229                 sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o \\r
230                 sshsha.o sshzlib.o telnet.o terminal.o timing.o tree234.o \\r
231                 version.o wcwidth.o wildcard.o wincfg.o winctrls.o windefs.o \\r
232                 windlg.o window.o wingss.o winhandl.o winhelp.o winjump.o \\r
233                 winmisc.o winnet.o winnoise.o winpgntc.o winprint.o \\r
234                 winproxy.o winser.o winstore.o wintime.o winucs.o winutils.o \\r
235                 winx11.o x11fwd.o -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 \\r
236                 -limm32 -lole32 -lshell32 -luser32 -lwinmm -lwinspool\r
237 \r
238 puttygen.exe: import.o misc.o notiming.o puttygen.res.o sshaes.o sshbn.o \\r
239                 sshdes.o sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o \\r
240                 sshrand.o sshrsa.o sshrsag.o sshsh256.o sshsh512.o sshsha.o \\r
241                 tree234.o version.o winctrls.o winhelp.o winmisc.o \\r
242                 winnoise.o winnojmp.o winpgen.o winstore.o wintime.o \\r
243                 winutils.o\r
244         $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,puttygen.map import.o \\r
245                 misc.o notiming.o puttygen.res.o sshaes.o sshbn.o sshdes.o \\r
246                 sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o sshrand.o \\r
247                 sshrsa.o sshrsag.o sshsh256.o sshsh512.o sshsha.o tree234.o \\r
248                 version.o winctrls.o winhelp.o winmisc.o winnoise.o \\r
249                 winnojmp.o winpgen.o winstore.o wintime.o winutils.o \\r
250                 -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lole32 \\r
251                 -lshell32 -luser32 -lwinmm -lwinspool\r
252 \r
253 puttytel.exe: be_nos_s.o cmdline.o config.o dialog.o ldisc.o ldiscucs.o \\r
254                 logging.o minibidi.o misc.o nocproxy.o nogss.o pinger.o \\r
255                 proxy.o puttytel.res.o raw.o rlogin.o sercfg.o settings.o \\r
256                 sizetip.o telnet.o terminal.o timing.o tree234.o version.o \\r
257                 wcwidth.o wincfg.o winctrls.o windefs.o windlg.o window.o \\r
258                 winhandl.o winhelp.o winjump.o winmisc.o winnet.o winprint.o \\r
259                 winproxy.o winser.o winstore.o wintime.o winucs.o winutils.o\r
260         $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,puttytel.map be_nos_s.o \\r
261                 cmdline.o config.o dialog.o ldisc.o ldiscucs.o logging.o \\r
262                 minibidi.o misc.o nocproxy.o nogss.o pinger.o proxy.o \\r
263                 puttytel.res.o raw.o rlogin.o sercfg.o settings.o sizetip.o \\r
264                 telnet.o terminal.o timing.o tree234.o version.o wcwidth.o \\r
265                 wincfg.o winctrls.o windefs.o windlg.o window.o winhandl.o \\r
266                 winhelp.o winjump.o winmisc.o winnet.o winprint.o winproxy.o \\r
267                 winser.o winstore.o wintime.o winucs.o winutils.o -ladvapi32 \\r
268                 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lole32 -lshell32 \\r
269                 -luser32 -lwinmm -lwinspool\r
270 \r
271 be_all_s.o: ../be_all_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
272                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
273                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
274                 ../charset/charset.h\r
275         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all_s.c\r
276 \r
277 be_none.o: ../be_none.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
278                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
279                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
280                 ../charset/charset.h\r
281         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_none.c\r
282 \r
283 be_nos_s.o: ../be_nos_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
284                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
285                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
286                 ../charset/charset.h\r
287         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nos_s.c\r
288 \r
289 cmdgen.o: ../cmdgen.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
290                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
291                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
292                 ../windows/winhelp.h ../charset/charset.h\r
293         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdgen.c\r
294 \r
295 cmdline.o: ../cmdline.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
296                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
297                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
298                 ../charset/charset.h\r
299         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdline.c\r
300 \r
301 config.o: ../config.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
302                 ../network.h ../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 ../config.c\r
306 \r
307 cproxy.o: ../cproxy.c ../putty.h ../ssh.h ../network.h ../proxy.h \\r
308                 ../puttyps.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
309                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
310                 ../windows/winhelp.h ../charset/charset.h\r
311         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cproxy.c\r
312 \r
313 dialog.o: ../dialog.c ../putty.h ../dialog.h ../puttyps.h ../network.h \\r
314                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
315                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
316                 ../windows/winhelp.h ../charset/charset.h\r
317         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../dialog.c\r
318 \r
319 fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h\r
320         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/fromucs.c\r
321 \r
322 gtkcfg.o: ../unix/gtkcfg.c ../putty.h ../dialog.h ../storage.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 ../unix/gtkcfg.c\r
327 \r
328 gtkcols.o: ../unix/gtkcols.c ../unix/gtkcols.h\r
329         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcols.c\r
330 \r
331 gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../unix/gtkfont.h ../putty.h \\r
332                 ../storage.h ../dialog.h ../tree234.h ../puttyps.h \\r
333                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
334                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
335                 ../charset/charset.h\r
336         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkdlg.c\r
337 \r
338 gtkfont.o: ../unix/gtkfont.c ../putty.h ../unix/gtkfont.h ../tree234.h \\r
339                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
340                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
341                 ../windows/winhelp.h ../charset/charset.h\r
342         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkfont.c\r
343 \r
344 gtkwin.o: ../unix/gtkwin.c ../putty.h ../terminal.h ../unix/gtkfont.h \\r
345                 ../puttyps.h ../network.h ../misc.h ../tree234.h \\r
346                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
347                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
348         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkwin.c\r
349 \r
350 import.o: ../import.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \\r
351                 ../network.h ../puttymem.h ../tree234.h ../int64.h \\r
352                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
353                 ../windows/winhelp.h ../charset/charset.h\r
354         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../import.c\r
355 \r
356 int64.o: ../int64.c ../int64.h\r
357         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../int64.c\r
358 \r
359 ldisc.o: ../ldisc.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \\r
360                 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \\r
361                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
362                 ../windows/winhelp.h ../charset/charset.h\r
363         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldisc.c\r
364 \r
365 ldiscucs.o: ../ldiscucs.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \\r
366                 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \\r
367                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
368                 ../windows/winhelp.h ../charset/charset.h\r
369         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldiscucs.c\r
370 \r
371 localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h\r
372         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/localenc.c\r
373 \r
374 logging.o: ../logging.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
375                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
376                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
377                 ../charset/charset.h\r
378         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../logging.c\r
379 \r
380 macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h\r
381         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/macenc.c\r
382 \r
383 mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h\r
384         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/mimeenc.c\r
385 \r
386 minibidi.o: ../minibidi.c ../misc.h ../puttymem.h\r
387         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../minibidi.c\r
388 \r
389 misc.o: ../misc.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
390                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
391                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
392                 ../charset/charset.h\r
393         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../misc.c\r
394 \r
395 nocproxy.o: ../nocproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \\r
396                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
397                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
398                 ../windows/winhelp.h ../charset/charset.h\r
399         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocproxy.c\r
400 \r
401 nogss.o: ../nogss.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
402                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
403                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
404                 ../charset/charset.h\r
405         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nogss.c\r
406 \r
407 notiming.o: ../notiming.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
408                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
409                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
410                 ../charset/charset.h\r
411         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../notiming.c\r
412 \r
413 osxctrls.o: ../macosx/osxctrls.m ../putty.h ../dialog.h ../macosx/osxclass.h \\r
414                 ../tree234.h ../puttyps.h ../network.h ../misc.h \\r
415                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
416                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
417         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxctrls.m\r
418 \r
419 osxdlg.o: ../macosx/osxdlg.m ../putty.h ../storage.h ../dialog.h \\r
420                 ../macosx/osxclass.h ../puttyps.h ../network.h ../misc.h \\r
421                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
422                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
423                 ../charset/charset.h\r
424         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxdlg.m\r
425 \r
426 osxmain.o: ../macosx/osxmain.m ../putty.h ../macosx/osxclass.h ../puttyps.h \\r
427                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
428                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
429                 ../windows/winhelp.h ../charset/charset.h\r
430         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxmain.m\r
431 \r
432 osxsel.o: ../macosx/osxsel.m ../putty.h ../macosx/osxclass.h ../puttyps.h \\r
433                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
434                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
435                 ../windows/winhelp.h ../charset/charset.h\r
436         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxsel.m\r
437 \r
438 osxwin.o: ../macosx/osxwin.m ../putty.h ../terminal.h ../macosx/osxclass.h \\r
439                 ../puttyps.h ../network.h ../misc.h ../tree234.h \\r
440                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
441                 ../puttymem.h ../windows/winhelp.h ../charset/charset.h\r
442         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxwin.m\r
443 \r
444 pageant.res.o: FORCE\r
445         $(RC) $(RCFL) $(RCFLAGS) ../windows/pageant.rc pageant.res.o\r
446 \r
447 pgssapi.o: ../pgssapi.c ../putty.h ../pgssapi.h ../puttyps.h ../network.h \\r
448                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
449                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
450                 ../windows/winhelp.h ../charset/charset.h\r
451         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pgssapi.c\r
452 \r
453 pinger.o: ../pinger.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
454                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
455                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
456                 ../charset/charset.h\r
457         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pinger.c\r
458 \r
459 plink.res.o: FORCE\r
460         $(RC) $(RCFL) $(RCFLAGS) ../windows/plink.rc plink.res.o\r
461 \r
462 portfwd.o: ../portfwd.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
463                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
464                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
465                 ../windows/winhelp.h ../charset/charset.h\r
466         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../portfwd.c\r
467 \r
468 proxy.o: ../proxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \\r
469                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
470                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
471                 ../windows/winhelp.h ../charset/charset.h\r
472         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../proxy.c\r
473 \r
474 pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.h ../storage.h \\r
475                 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
476                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
477                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
478         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pscp.c\r
479 \r
480 pscp.res.o: FORCE\r
481         $(RC) $(RCFL) $(RCFLAGS) ../windows/pscp.rc pscp.res.o\r
482 \r
483 psftp.o: ../psftp.c ../putty.h ../psftp.h ../storage.h ../ssh.h ../sftp.h \\r
484                 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
485                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
486                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
487         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psftp.c\r
488 \r
489 psftp.res.o: FORCE\r
490         $(RC) $(RCFL) $(RCFLAGS) ../windows/psftp.rc psftp.res.o\r
491 \r
492 putty.res.o: FORCE\r
493         $(RC) $(RCFL) $(RCFLAGS) ../windows/putty.rc putty.res.o\r
494 \r
495 puttygen.res.o: FORCE\r
496         $(RC) $(RCFL) $(RCFLAGS) ../windows/puttygen.rc puttygen.res.o\r
497 \r
498 puttytel.res.o: FORCE\r
499         $(RC) $(RCFL) $(RCFLAGS) ../windows/puttytel.rc puttytel.res.o\r
500 \r
501 raw.o: ../raw.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
502                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
503                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
504                 ../charset/charset.h\r
505         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../raw.c\r
506 \r
507 rlogin.o: ../rlogin.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
508                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
509                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
510                 ../charset/charset.h\r
511         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../rlogin.c\r
512 \r
513 sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h\r
514         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcs.c\r
515 \r
516 sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h\r
517         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcsdat.c\r
518 \r
519 sercfg.o: ../sercfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
520                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
521                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
522                 ../windows/winhelp.h ../charset/charset.h\r
523         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sercfg.c\r
524 \r
525 settings.o: ../settings.c ../putty.h ../storage.h ../puttyps.h ../network.h \\r
526                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
527                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
528                 ../windows/winhelp.h ../charset/charset.h\r
529         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../settings.c\r
530 \r
531 sftp.o: ../sftp.c ../misc.h ../int64.h ../tree234.h ../sftp.h ../puttymem.h\r
532         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftp.c\r
533 \r
534 sizetip.o: ../windows/sizetip.c ../putty.h ../puttyps.h ../network.h \\r
535                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
536                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
537                 ../windows/winhelp.h ../charset/charset.h\r
538         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/sizetip.c\r
539 \r
540 slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \\r
541                 ../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c\r
542         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/slookup.c\r
543 \r
544 ssh.o: ../ssh.c ../putty.h ../tree234.h ../ssh.h ../sshgssc.h ../sshgss.h \\r
545                 ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \\r
546                 ../pgssapi.h ../windows/winstuff.h ../macosx/osx.h \\r
547                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
548         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh.c\r
549 \r
550 sshaes.o: ../sshaes.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
551                 ../int64.h ../misc.h\r
552         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshaes.c\r
553 \r
554 ssharcf.o: ../ssharcf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
555                 ../int64.h ../misc.h\r
556         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssharcf.c\r
557 \r
558 sshblowf.o: ../sshblowf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
559                 ../int64.h ../misc.h\r
560         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblowf.c\r
561 \r
562 sshbn.o: ../sshbn.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
563                 ../network.h ../int64.h\r
564         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshbn.c\r
565 \r
566 sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
567                 ../int64.h ../misc.h\r
568         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrc.c\r
569 \r
570 sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
571                 ../network.h ../int64.h\r
572         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrcda.c\r
573 \r
574 sshdes.o: ../sshdes.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
575                 ../int64.h ../misc.h\r
576         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdes.c\r
577 \r
578 sshdh.o: ../sshdh.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
579                 ../int64.h ../misc.h\r
580         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdh.c\r
581 \r
582 sshdss.o: ../sshdss.c ../ssh.h ../misc.h ../puttymem.h ../tree234.h \\r
583                 ../network.h ../int64.h\r
584         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdss.c\r
585 \r
586 sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../puttymem.h ../tree234.h \\r
587                 ../network.h ../int64.h\r
588         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdssg.c\r
589 \r
590 sshgssc.o: ../sshgssc.c ../putty.h ../sshgssc.h ../misc.h ../puttyps.h \\r
591                 ../network.h ../pgssapi.h ../sshgss.h ../puttymem.h \\r
592                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
593                 ../tree234.h ../windows/winhelp.h ../charset/charset.h\r
594         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshgssc.c\r
595 \r
596 sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
597                 ../int64.h ../misc.h\r
598         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmd5.c\r
599 \r
600 sshprime.o: ../sshprime.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
601                 ../int64.h ../misc.h\r
602         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprime.c\r
603 \r
604 sshpubk.o: ../sshpubk.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \\r
605                 ../network.h ../puttymem.h ../tree234.h ../int64.h \\r
606                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
607                 ../windows/winhelp.h ../charset/charset.h\r
608         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshpubk.c\r
609 \r
610 sshrand.o: ../sshrand.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
611                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
612                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
613                 ../windows/winhelp.h ../charset/charset.h\r
614         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrand.c\r
615 \r
616 sshrsa.o: ../sshrsa.c ../ssh.h ../misc.h ../puttymem.h ../tree234.h \\r
617                 ../network.h ../int64.h\r
618         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsa.c\r
619 \r
620 sshrsag.o: ../sshrsag.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
621                 ../int64.h ../misc.h\r
622         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsag.c\r
623 \r
624 sshsh256.o: ../sshsh256.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
625                 ../int64.h ../misc.h\r
626         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh256.c\r
627 \r
628 sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
629                 ../int64.h ../misc.h\r
630         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh512.c\r
631 \r
632 sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
633                 ../int64.h ../misc.h\r
634         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha.c\r
635 \r
636 sshzlib.o: ../sshzlib.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \\r
637                 ../int64.h ../misc.h\r
638         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshzlib.c\r
639 \r
640 telnet.o: ../telnet.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
641                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
642                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
643                 ../charset/charset.h\r
644         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../telnet.c\r
645 \r
646 terminal.o: ../terminal.c ../putty.h ../terminal.h ../puttyps.h ../network.h \\r
647                 ../misc.h ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
648                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
649                 ../charset/charset.h\r
650         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../terminal.c\r
651 \r
652 testback.o: ../testback.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
653                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
654                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
655                 ../charset/charset.h\r
656         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testback.c\r
657 \r
658 time.o: ../time.c\r
659         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../time.c\r
660 \r
661 timing.o: ../timing.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
662                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
663                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
664                 ../charset/charset.h\r
665         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../timing.c\r
666 \r
667 toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h\r
668         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/toucs.c\r
669 \r
670 tree234.o: ../tree234.c ../puttymem.h ../tree234.h\r
671         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../tree234.c\r
672 \r
673 utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h\r
674         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/utf8.c\r
675 \r
676 ux_x11.o: ../unix/ux_x11.c ../putty.h ../ssh.h ../network.h ../puttyps.h \\r
677                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
678                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
679                 ../windows/winhelp.h ../charset/charset.h\r
680         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/ux_x11.c\r
681 \r
682 uxagentc.o: ../unix/uxagentc.c ../putty.h ../misc.h ../tree234.h \\r
683                 ../puttymem.h ../puttyps.h ../network.h \\r
684                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
685                 ../windows/winhelp.h ../charset/charset.h\r
686         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxagentc.c\r
687 \r
688 uxcfg.o: ../unix/uxcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \\r
689                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
690                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
691                 ../windows/winhelp.h ../charset/charset.h\r
692         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcfg.c\r
693 \r
694 uxcons.o: ../unix/uxcons.c ../putty.h ../storage.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 ../unix/uxcons.c\r
699 \r
700 uxgen.o: ../unix/uxgen.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
701                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
702                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
703                 ../charset/charset.h\r
704         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgen.c\r
705 \r
706 uxgss.o: ../unix/uxgss.c ../putty.h ../pgssapi.h ../sshgss.h ../sshgssc.h \\r
707                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
708                 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \\r
709                 ../windows/winhelp.h ../charset/charset.h\r
710         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgss.c\r
711 \r
712 uxmisc.o: ../unix/uxmisc.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
713                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
714                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
715                 ../charset/charset.h\r
716         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxmisc.c\r
717 \r
718 uxnet.o: ../unix/uxnet.c ../putty.h ../network.h ../tree234.h ../puttyps.h \\r
719                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
720                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
721                 ../charset/charset.h\r
722         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnet.c\r
723 \r
724 uxnoise.o: ../unix/uxnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \\r
725                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
726                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
727                 ../windows/winhelp.h ../charset/charset.h\r
728         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnoise.c\r
729 \r
730 uxplink.o: ../unix/uxplink.c ../putty.h ../storage.h ../tree234.h \\r
731                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
732                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
733                 ../windows/winhelp.h ../charset/charset.h\r
734         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxplink.c\r
735 \r
736 uxprint.o: ../unix/uxprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
737                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
738                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
739                 ../charset/charset.h\r
740         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxprint.c\r
741 \r
742 uxproxy.o: ../unix/uxproxy.c ../tree234.h ../putty.h ../network.h ../proxy.h \\r
743                 ../puttyps.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
744                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
745                 ../charset/charset.h\r
746         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxproxy.c\r
747 \r
748 uxpterm.o: ../unix/uxpterm.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
749                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
750                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
751                 ../charset/charset.h\r
752         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpterm.c\r
753 \r
754 uxpty.o: ../unix/uxpty.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
755                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
756                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
757                 ../charset/charset.h\r
758         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpty.c\r
759 \r
760 uxputty.o: ../unix/uxputty.c ../putty.h ../storage.h ../puttyps.h \\r
761                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
762                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
763                 ../windows/winhelp.h ../charset/charset.h\r
764         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxputty.c\r
765 \r
766 uxsel.o: ../unix/uxsel.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
767                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
768                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
769                 ../charset/charset.h\r
770         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsel.c\r
771 \r
772 uxser.o: ../unix/uxser.c ../putty.h ../tree234.h ../puttyps.h ../network.h \\r
773                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
774                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
775                 ../charset/charset.h\r
776         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxser.c\r
777 \r
778 uxsftp.o: ../unix/uxsftp.c ../putty.h ../ssh.h ../psftp.h ../int64.h \\r
779                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
780                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
781                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
782         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftp.c\r
783 \r
784 uxsignal.o: ../unix/uxsignal.c\r
785         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsignal.c\r
786 \r
787 uxstore.o: ../unix/uxstore.c ../putty.h ../storage.h ../tree234.h \\r
788                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
789                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
790                 ../windows/winhelp.h ../charset/charset.h\r
791         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxstore.c\r
792 \r
793 uxucs.o: ../unix/uxucs.c ../putty.h ../charset/charset.h ../terminal.h \\r
794                 ../misc.h ../puttyps.h ../network.h ../tree234.h \\r
795                 ../puttymem.h ../windows/winstuff.h ../macosx/osx.h \\r
796                 ../unix/unix.h ../windows/winhelp.h\r
797         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxucs.c\r
798 \r
799 wcwidth.o: ../wcwidth.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
800                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
801                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
802                 ../charset/charset.h\r
803         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wcwidth.c\r
804 \r
805 wildcard.o: ../wildcard.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
806                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
807                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
808                 ../charset/charset.h\r
809         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wildcard.c\r
810 \r
811 wincfg.o: ../windows/wincfg.c ../putty.h ../dialog.h ../storage.h \\r
812                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
813                 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \\r
814                 ../windows/winhelp.h ../charset/charset.h\r
815         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincfg.c\r
816 \r
817 wincons.o: ../windows/wincons.c ../putty.h ../storage.h ../ssh.h \\r
818                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
819                 ../tree234.h ../int64.h ../windows/winstuff.h \\r
820                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
821                 ../charset/charset.h\r
822         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincons.c\r
823 \r
824 winctrls.o: ../windows/winctrls.c ../putty.h ../misc.h ../dialog.h \\r
825                 ../puttyps.h ../network.h ../puttymem.h \\r
826                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
827                 ../tree234.h ../windows/winhelp.h ../charset/charset.h\r
828         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winctrls.c\r
829 \r
830 windefs.o: ../windows/windefs.c ../putty.h ../puttyps.h ../network.h \\r
831                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
832                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
833                 ../windows/winhelp.h ../charset/charset.h\r
834         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windefs.c\r
835 \r
836 windlg.o: ../windows/windlg.c ../putty.h ../ssh.h ../windows/win_res.h \\r
837                 ../storage.h ../dialog.h ../puttyps.h ../network.h ../misc.h \\r
838                 ../puttymem.h ../tree234.h ../int64.h ../windows/winstuff.h \\r
839                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
840                 ../charset/charset.h\r
841         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windlg.c\r
842 \r
843 window.o: ../windows/window.c ../putty.h ../terminal.h ../storage.h \\r
844                 ../windows/win_res.h ../puttyps.h ../network.h ../misc.h \\r
845                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
846                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
847                 ../charset/charset.h\r
848         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/window.c\r
849 \r
850 wingss.o: ../windows/wingss.c ../putty.h ../pgssapi.h ../sshgss.h \\r
851                 ../sshgssc.h ../misc.h ../puttyps.h ../network.h \\r
852                 ../puttymem.h ../windows/winstuff.h ../macosx/osx.h \\r
853                 ../unix/unix.h ../tree234.h ../windows/winhelp.h \\r
854                 ../charset/charset.h\r
855         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wingss.c\r
856 \r
857 winhandl.o: ../windows/winhandl.c ../putty.h ../puttyps.h ../network.h \\r
858                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
859                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
860                 ../windows/winhelp.h ../charset/charset.h\r
861         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhandl.c\r
862 \r
863 winhelp.o: ../windows/winhelp.c ../putty.h ../puttyps.h ../network.h \\r
864                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
865                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
866                 ../windows/winhelp.h ../charset/charset.h\r
867         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhelp.c\r
868 \r
869 winjump.o: ../windows/winjump.c ../putty.h ../storage.h ../puttyps.h \\r
870                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
871                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
872                 ../windows/winhelp.h ../charset/charset.h\r
873         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winjump.c\r
874 \r
875 winmisc.o: ../windows/winmisc.c ../putty.h ../puttyps.h ../network.h \\r
876                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
877                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
878                 ../windows/winhelp.h ../charset/charset.h\r
879         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winmisc.c\r
880 \r
881 winnet.o: ../windows/winnet.c ../putty.h ../network.h ../tree234.h \\r
882                 ../puttyps.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
883                 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \\r
884                 ../charset/charset.h\r
885         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnet.c\r
886 \r
887 winnoise.o: ../windows/winnoise.c ../putty.h ../ssh.h ../storage.h \\r
888                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
889                 ../tree234.h ../int64.h ../windows/winstuff.h \\r
890                 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h \\r
891                 ../charset/charset.h\r
892         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnoise.c\r
893 \r
894 winnojmp.o: ../windows/winnojmp.c\r
895         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnojmp.c\r
896 \r
897 winpgen.o: ../windows/winpgen.c ../putty.h ../ssh.h ../puttyps.h \\r
898                 ../network.h ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
899                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
900                 ../windows/winhelp.h ../charset/charset.h\r
901         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgen.c\r
902 \r
903 winpgnt.o: ../windows/winpgnt.c ../putty.h ../ssh.h ../misc.h ../tree234.h \\r
904                 ../puttyps.h ../network.h ../puttymem.h ../int64.h \\r
905                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
906                 ../windows/winhelp.h ../charset/charset.h\r
907         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgnt.c\r
908 \r
909 winpgntc.o: ../windows/winpgntc.c ../putty.h ../puttyps.h ../network.h \\r
910                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
911                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
912                 ../windows/winhelp.h ../charset/charset.h\r
913         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgntc.c\r
914 \r
915 winplink.o: ../windows/winplink.c ../putty.h ../storage.h ../tree234.h \\r
916                 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \\r
917                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
918                 ../windows/winhelp.h ../charset/charset.h\r
919         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winplink.c\r
920 \r
921 winprint.o: ../windows/winprint.c ../putty.h ../puttyps.h ../network.h \\r
922                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
923                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
924                 ../windows/winhelp.h ../charset/charset.h\r
925         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winprint.c\r
926 \r
927 winproxy.o: ../windows/winproxy.c ../tree234.h ../putty.h ../network.h \\r
928                 ../proxy.h ../puttyps.h ../misc.h ../windows/winstuff.h \\r
929                 ../macosx/osx.h ../unix/unix.h ../puttymem.h \\r
930                 ../windows/winhelp.h ../charset/charset.h\r
931         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winproxy.c\r
932 \r
933 winser.o: ../windows/winser.c ../putty.h ../puttyps.h ../network.h ../misc.h \\r
934                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
935                 ../puttymem.h ../tree234.h ../windows/winhelp.h \\r
936                 ../charset/charset.h\r
937         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winser.c\r
938 \r
939 winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../ssh.h ../int64.h \\r
940                 ../puttyps.h ../network.h ../misc.h ../puttymem.h \\r
941                 ../tree234.h ../windows/winstuff.h ../macosx/osx.h \\r
942                 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h\r
943         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsftp.c\r
944 \r
945 winstore.o: ../windows/winstore.c ../putty.h ../storage.h ../puttyps.h \\r
946                 ../network.h ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
947                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
948                 ../windows/winhelp.h ../charset/charset.h\r
949         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winstore.c\r
950 \r
951 wintime.o: ../windows/wintime.c ../putty.h ../puttyps.h ../network.h \\r
952                 ../misc.h ../windows/winstuff.h ../macosx/osx.h \\r
953                 ../unix/unix.h ../puttymem.h ../tree234.h \\r
954                 ../windows/winhelp.h ../charset/charset.h\r
955         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wintime.c\r
956 \r
957 winucs.o: ../windows/winucs.c ../putty.h ../terminal.h ../misc.h \\r
958                 ../puttyps.h ../network.h ../tree234.h ../puttymem.h \\r
959                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
960                 ../windows/winhelp.h ../charset/charset.h\r
961         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winucs.c\r
962 \r
963 winutils.o: ../windows/winutils.c ../putty.h ../misc.h ../puttyps.h \\r
964                 ../network.h ../puttymem.h ../windows/winstuff.h \\r
965                 ../macosx/osx.h ../unix/unix.h ../tree234.h \\r
966                 ../windows/winhelp.h ../charset/charset.h\r
967         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winutils.c\r
968 \r
969 winx11.o: ../windows/winx11.c ../putty.h ../ssh.h ../puttyps.h ../network.h \\r
970                 ../misc.h ../puttymem.h ../tree234.h ../int64.h \\r
971                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
972                 ../windows/winhelp.h ../charset/charset.h\r
973         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winx11.c\r
974 \r
975 x11fwd.o: ../x11fwd.c ../putty.h ../ssh.h ../tree234.h ../puttyps.h \\r
976                 ../network.h ../misc.h ../puttymem.h ../int64.h \\r
977                 ../windows/winstuff.h ../macosx/osx.h ../unix/unix.h \\r
978                 ../windows/winhelp.h ../charset/charset.h\r
979         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../x11fwd.c\r
980 \r
981 xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h\r
982         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/xenc.c\r
983 \r
984 xkeysym.o: ../unix/xkeysym.c ../misc.h ../puttymem.h\r
985         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xkeysym.c\r
986 \r
987 xpmptcfg.o: ../unix/xpmptcfg.c\r
988         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmptcfg.c\r
989 \r
990 xpmpterm.o: ../unix/xpmpterm.c\r
991         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpterm.c\r
992 \r
993 xpmpucfg.o: ../unix/xpmpucfg.c\r
994         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpucfg.c\r
995 \r
996 xpmputty.o: ../unix/xpmputty.c\r
997         $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmputty.c\r
998 \r
999 \r
1000 version.o: FORCE\r
1001         $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c\r
1002 \r
1003 clean:\r
1004         rm -f *.o *.exe *.res.o *.map\r
1005 \r
1006 FORCE:\r