1 # Makefile for putty under cygwin.
3 # This file was created by `mkfiles.pl' from the `Recipe' file.
4 # DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.
6 # Extra options you can set:
8 # - VER="-DSNAPSHOT=1999-01-25 -DSVN_REV=1234"
9 # Generates executables whose About box report them as being a
10 # development snapshot. SVN_REV is a Subversion revision number.
12 # - VER=-DRELEASE=0.43
13 # Generates executables whose About box report them as being a
16 # - COMPAT=-DAUTO_WINSOCK (Windows only)
17 # Causes PuTTY to assume that <windows.h> includes its own WinSock
18 # header file, so that it won't try to include <winsock.h>.
20 # - COMPAT=-DWINSOCK_TWO (Windows only)
21 # Causes the PuTTY utilities to include <winsock2.h> instead of
22 # <winsock.h>, except Plink which _needs_ WinSock 2 so it already
25 # - COMPAT=-DNO_SECURITY (Windows only)
26 # Disables Pageant's use of <aclapi.h>, which is not available
27 # with some development environments (such as older versions of
28 # the Cygwin/mingw GNU toolchain). This means that Pageant
29 # won't care about the local user ID of processes accessing it; a
30 # version of Pageant built with this option will therefore refuse
31 # to run under NT-series OSes on security grounds (although it
32 # will run fine on Win95-series OSes where there is no access
35 # - COMPAT=-DNO_MULTIMON (Windows only)
36 # Disables PuTTY's use of <multimon.h>, which is not available
37 # with some development environments. This means that PuTTY's
38 # full-screen mode (configurable to work on Alt-Enter) will
39 # not behave usefully in a multi-monitor environment.
41 # Note that this definition is always enabled in the Cygwin
42 # build, since at the time of writing this <multimon.h> is
43 # known not to be available in Cygwin.
45 # - COMPAT=-DNO_HTMLHELP (Windows only)
46 # Disables PuTTY's use of <htmlhelp.h>, which is not available
47 # with some development environments. The resulting binary
48 # will only look for an old-style WinHelp file (.HLP/.CNT), and
49 # will ignore any .CHM file.
51 # Note that this definition is always enabled in the Cygwin
52 # build, since at the time of writing this <htmlhelp.h> is
53 # known not to be available in Cygwin (although you can use
54 # the htmlhelp.h supplied with HTML Help Workshop).
56 # - RCFL=-DNO_MANIFESTS (Windows only)
57 # Disables inclusion of XML application manifests in the PuTTY
58 # binaries. This may be necessary to build for 64-bit Windows;
59 # the manifests are only included to use the XP GUI style on
60 # Windows XP, and the architecture tags are a lie on 64-bit.
63 # Disables PuTTY's ability to make IPv6 connections, enabling
64 # it to compile under development environments which do not
65 # support IPv6 in their header files.
67 # - COMPAT=-DMSVC4 (Windows only)
69 # Makes a couple of minor changes so that PuTTY compiles using
70 # MSVC 4. You will also need -DNO_SECURITY and -DNO_MULTIMON.
72 # - RCFL=-DASCIICTLS (Windows only)
73 # Uses ASCII rather than Unicode to specify the tab control in
74 # the resource file. Probably most useful when compiling with
75 # Cygnus/mingw32, whose resource compiler may have less of a
78 # - XFLAGS=-DTELNET_DEFAULT
79 # Causes PuTTY to default to the Telnet protocol (in the absence
80 # of Default Settings and so on to the contrary). Normally PuTTY
81 # will default to SSH.
84 # Causes PuTTY to enable internal debugging.
86 # - XFLAGS=-DMALLOC_LOG
87 # Causes PuTTY to emit a file called putty_mem.log, logging every
88 # memory allocation and free, so you can track memory leaks.
90 # - XFLAGS=-DMINEFIELD (Windows only)
91 # Causes PuTTY to use a custom memory allocator, similar in
92 # concept to Electric Fence, in place of regular malloc(). Wastes
93 # huge amounts of RAM, but should cause heap-corruption bugs to
94 # show up as GPFs at the point of failure rather than appearing
95 # later on as second-level damage.
98 # You can define this path to point at your tools if you need to
99 # TOOLPATH = c:\cygwin\bin\ # or similar, if you're running Windows
100 # TOOLPATH = /pkg/mingw32msvc/i386-mingw32msvc/bin/
102 RC = $(TOOLPATH)windres
103 # Uncomment the following two lines to compile under Winelib
106 # You may also need to tell windres where to find include files:
107 # RCINC = --include-dir c:\cygwin\include\
109 CFLAGS = -mno-cygwin -Wall -O2 -D_WINDOWS -DDEBUG -DWIN32S_COMPAT \
110 -D_NO_OLDNAMES -DNO_MULTIMON -DNO_HTMLHELP -I.././ \
111 -I../charset/ -I../windows/ -I../unix/ -I../mac/ \
113 LDFLAGS = -mno-cygwin -s
114 RCFLAGS = $(RCINC) --define WIN32=1 --define _WIN32=1 --define WINVER=0x0400
116 # XXX GNU-ism, but it's probably all right for a Cygwin/MinGW Makefile.
117 RCFLAGS += $(patsubst -D%,--define %,$(VER))
118 # _WIN32_IE is required to expose identifiers that only make sense on
119 # systems with IE5+ installed, such as some arguments to SHGetFolderPath().
120 # WINVER etc perform a similar function for FlashWindowEx().
121 CFLAGS += -D_WIN32_IE=0x0500
122 CFLAGS += -DWINVER=0x0500 -D_WIN32_WINDOWS=0x0410 -D_WIN32_WINNT=0x0500
126 all: pageant.exe plink.exe pscp.exe psftp.exe putty.exe puttygen.exe \
129 pageant.exe: misc.o pageant.res.o sshaes.o sshbn.o sshdes.o sshdss.o \
130 sshmd5.o sshpubk.o sshrsa.o sshsh512.o sshsha.o tree234.o \
131 version.o winhelp.o winmisc.o winpgnt.o winpgntc.o \
133 $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,pageant.map misc.o \
134 pageant.res.o sshaes.o sshbn.o sshdes.o sshdss.o sshmd5.o \
135 sshpubk.o sshrsa.o sshsh512.o sshsha.o tree234.o version.o \
136 winhelp.o winmisc.o winpgnt.o winpgntc.o winutils.o \
137 -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lshell32 \
138 -luser32 -lwinmm -lwinspool
140 plink.exe: be_all_s.o cmdline.o cproxy.o cygterm.o ldisc.o logging.o misc.o \
141 pinger.o plink.res.o portfwd.o proxy.o raw.o rlogin.o \
142 settings.o ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o \
143 sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o \
144 sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \
145 sshzlib.o telnet.o timing.o tree234.o version.o wildcard.o \
146 wincons.o windefs.o winhandl.o winmisc.o winnet.o winnoise.o \
147 winpgntc.o winplink.o winproxy.o winser.o winstore.o \
149 $(CC) $(LDFLAGS) -o $@ -Wl,-Map,plink.map be_all_s.o cmdline.o \
150 cproxy.o cygterm.o ldisc.o logging.o misc.o pinger.o \
151 plink.res.o portfwd.o proxy.o raw.o rlogin.o settings.o \
152 ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \
153 sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
154 sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o \
155 telnet.o timing.o tree234.o version.o wildcard.o wincons.o \
156 windefs.o winhandl.o winmisc.o winnet.o winnoise.o \
157 winpgntc.o winplink.o winproxy.o winser.o winstore.o \
158 wintime.o x11fwd.o -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 \
159 -limm32 -lshell32 -luser32 -lwinmm -lwinspool
161 pscp.exe: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pinger.o \
162 portfwd.o proxy.o pscp.o pscp.res.o settings.o sftp.o ssh.o \
163 sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \
164 sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o \
165 sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o timing.o \
166 tree234.o version.o wildcard.o wincons.o windefs.o \
167 winhandl.o winmisc.o winnet.o winnoise.o winpgntc.o \
168 winproxy.o winsftp.o winstore.o wintime.o x11fwd.o
169 $(CC) $(LDFLAGS) -o $@ -Wl,-Map,pscp.map be_none.o cmdline.o \
170 cproxy.o int64.o logging.o misc.o pinger.o portfwd.o proxy.o \
171 pscp.o pscp.res.o settings.o sftp.o ssh.o sshaes.o ssharcf.o \
172 sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
173 sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o \
174 sshsh512.o sshsha.o sshzlib.o timing.o tree234.o version.o \
175 wildcard.o wincons.o windefs.o winhandl.o winmisc.o winnet.o \
176 winnoise.o winpgntc.o winproxy.o winsftp.o winstore.o \
177 wintime.o x11fwd.o -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 \
178 -limm32 -lshell32 -luser32 -lwinmm -lwinspool
180 psftp.exe: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pinger.o \
181 portfwd.o proxy.o psftp.o psftp.res.o settings.o sftp.o \
182 ssh.o sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o \
183 sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
184 sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o \
185 timing.o tree234.o version.o wildcard.o wincons.o windefs.o \
186 winhandl.o winmisc.o winnet.o winnoise.o winpgntc.o \
187 winproxy.o winsftp.o winstore.o wintime.o x11fwd.o
188 $(CC) $(LDFLAGS) -o $@ -Wl,-Map,psftp.map be_none.o cmdline.o \
189 cproxy.o int64.o logging.o misc.o pinger.o portfwd.o proxy.o \
190 psftp.o psftp.res.o settings.o sftp.o ssh.o sshaes.o \
191 ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o \
192 sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o \
193 sshsh256.o sshsh512.o sshsha.o sshzlib.o timing.o tree234.o \
194 version.o wildcard.o wincons.o windefs.o winhandl.o \
195 winmisc.o winnet.o winnoise.o winpgntc.o winproxy.o \
196 winsftp.o winstore.o wintime.o x11fwd.o -ladvapi32 \
197 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lshell32 -luser32 \
200 putty.exe: be_all_s.o cmdline.o config.o cproxy.o cygcfg.o cygterm.o \
201 dialog.o ldisc.o ldiscucs.o logging.o minibidi.o misc.o \
202 pinger.o portfwd.o proxy.o putty.res.o raw.o rlogin.o \
203 sercfg.o settings.o sizetip.o ssh.o sshaes.o ssharcf.o \
204 sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
205 sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o \
206 sshsh512.o sshsha.o sshzlib.o telnet.o terminal.o timing.o \
207 tree234.o version.o wcwidth.o wildcard.o wincfg.o winctrls.o \
208 windefs.o windlg.o window.o winhandl.o winhelp.o winmisc.o \
209 winnet.o winnoise.o winpgntc.o winprint.o winproxy.o \
210 winser.o winstore.o wintime.o winucs.o winutils.o x11fwd.o
211 $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,putty.map be_all_s.o \
212 cmdline.o config.o cproxy.o cygcfg.o cygterm.o dialog.o \
213 ldisc.o ldiscucs.o logging.o minibidi.o misc.o pinger.o \
214 portfwd.o proxy.o putty.res.o raw.o rlogin.o sercfg.o \
215 settings.o sizetip.o ssh.o sshaes.o ssharcf.o sshblowf.o \
216 sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \
217 sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o \
218 sshsha.o sshzlib.o telnet.o terminal.o timing.o tree234.o \
219 version.o wcwidth.o wildcard.o wincfg.o winctrls.o windefs.o \
220 windlg.o window.o winhandl.o winhelp.o winmisc.o winnet.o \
221 winnoise.o winpgntc.o winprint.o winproxy.o winser.o \
222 winstore.o wintime.o winucs.o winutils.o x11fwd.o -ladvapi32 \
223 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lshell32 -luser32 \
226 puttygen.exe: import.o misc.o notiming.o puttygen.res.o sshaes.o sshbn.o \
227 sshdes.o sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o \
228 sshrand.o sshrsa.o sshrsag.o sshsh512.o sshsha.o tree234.o \
229 version.o winctrls.o winhelp.o winmisc.o winnoise.o \
230 winpgen.o winstore.o wintime.o winutils.o
231 $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,puttygen.map import.o \
232 misc.o notiming.o puttygen.res.o sshaes.o sshbn.o sshdes.o \
233 sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o sshrand.o \
234 sshrsa.o sshrsag.o sshsh512.o sshsha.o tree234.o version.o \
235 winctrls.o winhelp.o winmisc.o winnoise.o winpgen.o \
236 winstore.o wintime.o winutils.o -ladvapi32 -lcomctl32 \
237 -lcomdlg32 -lgdi32 -limm32 -lshell32 -luser32 -lwinmm \
240 puttytel.exe: be_nos_s.o cmdline.o config.o cygcfg.o cygterm.o dialog.o \
241 ldisc.o ldiscucs.o logging.o minibidi.o misc.o nocproxy.o \
242 pinger.o proxy.o puttytel.res.o raw.o rlogin.o sercfg.o \
243 settings.o sizetip.o telnet.o terminal.o timing.o tree234.o \
244 version.o wcwidth.o wincfg.o winctrls.o windefs.o windlg.o \
245 window.o winhandl.o winhelp.o winmisc.o winnet.o winprint.o \
246 winproxy.o winser.o winstore.o wintime.o winucs.o winutils.o
247 $(CC) -mwindows $(LDFLAGS) -o $@ -Wl,-Map,puttytel.map be_nos_s.o \
248 cmdline.o config.o cygcfg.o cygterm.o dialog.o ldisc.o \
249 ldiscucs.o logging.o minibidi.o misc.o nocproxy.o pinger.o \
250 proxy.o puttytel.res.o raw.o rlogin.o sercfg.o settings.o \
251 sizetip.o telnet.o terminal.o timing.o tree234.o version.o \
252 wcwidth.o wincfg.o winctrls.o windefs.o windlg.o window.o \
253 winhandl.o winhelp.o winmisc.o winnet.o winprint.o \
254 winproxy.o winser.o winstore.o wintime.o winucs.o winutils.o \
255 -ladvapi32 -lcomctl32 -lcomdlg32 -lgdi32 -limm32 -lshell32 \
256 -luser32 -lwinmm -lwinspool
258 be_all.o: ../be_all.c ../putty.h ../puttyps.h ../network.h ../misc.h \
259 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
260 ../unix/unix.h ../puttymem.h ../tree234.h \
261 ../windows/winhelp.h ../charset/charset.h
262 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all.c
264 be_all_s.o: ../be_all_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \
265 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
266 ../unix/unix.h ../puttymem.h ../tree234.h \
267 ../windows/winhelp.h ../charset/charset.h
268 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all_s.c
270 be_none.o: ../be_none.c ../putty.h ../puttyps.h ../network.h ../misc.h \
271 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
272 ../unix/unix.h ../puttymem.h ../tree234.h \
273 ../windows/winhelp.h ../charset/charset.h
274 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_none.c
276 be_nos_s.o: ../be_nos_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \
277 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
278 ../unix/unix.h ../puttymem.h ../tree234.h \
279 ../windows/winhelp.h ../charset/charset.h
280 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nos_s.c
282 be_nossh.o: ../be_nossh.c ../putty.h ../puttyps.h ../network.h ../misc.h \
283 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
284 ../unix/unix.h ../puttymem.h ../tree234.h \
285 ../windows/winhelp.h ../charset/charset.h
286 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nossh.c
288 cmdgen.o: ../cmdgen.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
289 ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
290 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
291 ../tree234.h ../windows/winhelp.h ../charset/charset.h
292 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdgen.c
294 cmdline.o: ../cmdline.c ../putty.h ../puttyps.h ../network.h ../misc.h \
295 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
296 ../unix/unix.h ../puttymem.h ../tree234.h \
297 ../windows/winhelp.h ../charset/charset.h
298 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdline.c
300 config.o: ../config.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
301 ../network.h ../misc.h ../windows/winstuff.h \
302 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
303 ../puttymem.h ../tree234.h ../windows/winhelp.h \
305 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../config.c
307 cproxy.o: ../cproxy.c ../putty.h ../ssh.h ../network.h ../proxy.h \
308 ../puttyps.h ../misc.h ../puttymem.h ../int64.h \
309 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
310 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
312 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cproxy.c
314 cygcfg.o: ../windows/cygcfg.c ../putty.h ../dialog.h ../puttyps.h \
315 ../network.h ../misc.h ../windows/winstuff.h \
316 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
317 ../puttymem.h ../tree234.h ../windows/winhelp.h \
319 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/cygcfg.c
321 cygterm.o: ../windows/cygterm.c ../putty.h ../windows/cthelper/cthelper.h \
322 ../windows/cthelper/message.h ../puttyps.h ../network.h \
323 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
324 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
325 ../windows/winhelp.h ../charset/charset.h
326 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/cygterm.c
328 dialog.o: ../dialog.c ../putty.h ../dialog.h ../puttyps.h ../network.h \
329 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
330 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
331 ../windows/winhelp.h ../charset/charset.h
332 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../dialog.c
334 fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h
335 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/fromucs.c
337 gtkcfg.o: ../unix/gtkcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
338 ../network.h ../misc.h ../windows/winstuff.h \
339 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
340 ../puttymem.h ../tree234.h ../windows/winhelp.h \
342 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcfg.c
344 gtkcols.o: ../unix/gtkcols.c ../unix/gtkcols.h
345 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcols.c
347 gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../putty.h ../storage.h \
348 ../dialog.h ../tree234.h ../puttyps.h ../network.h ../misc.h \
349 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
350 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \
352 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkdlg.c
354 gtkwin.o: ../unix/gtkwin.c ../putty.h ../terminal.h ../puttyps.h \
355 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
356 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
357 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
358 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkwin.c
360 import.o: ../import.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \
361 ../network.h ../puttymem.h ../int64.h ../windows/winstuff.h \
362 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
363 ../tree234.h ../windows/winhelp.h ../charset/charset.h
364 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../import.c
366 int64.o: ../int64.c ../int64.h
367 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../int64.c
369 ldisc.o: ../ldisc.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \
370 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
371 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
372 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
373 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldisc.c
375 ldiscucs.o: ../ldiscucs.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \
376 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
377 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
378 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
379 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldiscucs.c
381 localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h
382 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/localenc.c
384 logging.o: ../logging.c ../putty.h ../puttyps.h ../network.h ../misc.h \
385 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
386 ../unix/unix.h ../puttymem.h ../tree234.h \
387 ../windows/winhelp.h ../charset/charset.h
388 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../logging.c
390 mac.o: ../mac/mac.c ../mac/macresid.h ../putty.h ../ssh.h ../terminal.h \
391 ../mac/mac.h ../puttyps.h ../network.h ../misc.h \
392 ../puttymem.h ../int64.h ../tree234.h ../charset/charset.h \
393 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
394 ../unix/unix.h ../windows/winhelp.h
395 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/mac.c
397 mac_res.res.o: ../mac/mac_res.r ../mac/macresid.h ../mac/version.r
398 $(RC) $(RCFL) $(RCFLAGS) ../mac/mac_res.r mac_res.res.o
400 macabout.o: ../mac/macabout.c ../putty.h ../mac/mac.h ../mac/macresid.h \
401 ../puttyps.h ../network.h ../misc.h ../charset/charset.h \
402 ../tree234.h ../windows/winstuff.h ../mac/macstuff.h \
403 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
405 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macabout.c
407 macctrls.o: ../mac/macctrls.c ../putty.h ../mac/mac.h ../mac/macresid.h \
408 ../dialog.h ../tree234.h ../puttyps.h ../network.h ../misc.h \
409 ../charset/charset.h ../windows/winstuff.h ../mac/macstuff.h \
410 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
412 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macctrls.c
414 macdlg.o: ../mac/macdlg.c ../putty.h ../dialog.h ../mac/mac.h \
415 ../mac/macresid.h ../storage.h ../puttyps.h ../network.h \
416 ../misc.h ../charset/charset.h ../tree234.h \
417 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
418 ../unix/unix.h ../puttymem.h ../windows/winhelp.h
419 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macdlg.c
421 macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h
422 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/macenc.c
424 macevlog.o: ../mac/macevlog.c ../putty.h ../mac/mac.h ../mac/macresid.h \
425 ../terminal.h ../puttyps.h ../network.h ../misc.h \
426 ../charset/charset.h ../tree234.h ../windows/winstuff.h \
427 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
428 ../puttymem.h ../windows/winhelp.h
429 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macevlog.c
431 macmisc.o: ../mac/macmisc.c ../putty.h ../mac/mac.h ../ssh.h ../puttyps.h \
432 ../network.h ../misc.h ../charset/charset.h ../tree234.h \
433 ../puttymem.h ../int64.h ../windows/winstuff.h \
434 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
436 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macmisc.c
438 macnet.o: ../mac/macnet.c ../putty.h ../network.h ../mac/mac.h ../ssh.h \
439 ../puttyps.h ../misc.h ../charset/charset.h ../tree234.h \
440 ../puttymem.h ../int64.h ../windows/winstuff.h \
441 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
443 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macnet.c
445 macnoise.o: ../mac/macnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \
446 ../network.h ../misc.h ../puttymem.h ../int64.h \
447 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
448 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
450 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macnoise.c
452 macpgen.o: ../mac/macpgen.c ../mac/macpgrid.h ../putty.h ../ssh.h \
453 ../mac/mac.h ../puttyps.h ../network.h ../misc.h \
454 ../puttymem.h ../int64.h ../charset/charset.h ../tree234.h \
455 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
456 ../unix/unix.h ../windows/winhelp.h
457 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macpgen.c
459 macpgen.res.o: ../mac/macpgen.r ../mac/macpgrid.h ../mac/version.r
460 $(RC) $(RCFL) $(RCFLAGS) ../mac/macpgen.r macpgen.res.o
462 macpgkey.o: ../mac/macpgkey.c ../putty.h ../mac/mac.h ../mac/macpgrid.h \
463 ../ssh.h ../puttyps.h ../network.h ../misc.h \
464 ../charset/charset.h ../tree234.h ../puttymem.h ../int64.h \
465 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
466 ../unix/unix.h ../windows/winhelp.h
467 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macpgkey.c
469 macstore.o: ../mac/macstore.c ../putty.h ../storage.h ../mac/mac.h \
470 ../mac/macresid.h ../puttyps.h ../network.h ../misc.h \
471 ../charset/charset.h ../tree234.h ../windows/winstuff.h \
472 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
473 ../puttymem.h ../windows/winhelp.h
474 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macstore.c
476 macterm.o: ../mac/macterm.c ../mac/macresid.h ../putty.h \
477 ../charset/charset.h ../mac/mac.h ../terminal.h ../puttyps.h \
478 ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
479 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
480 ../puttymem.h ../windows/winhelp.h
481 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macterm.c
483 macucs.o: ../mac/macucs.c ../putty.h ../charset/charset.h ../terminal.h \
484 ../misc.h ../mac/mac.h ../puttyps.h ../network.h \
485 ../tree234.h ../puttymem.h ../windows/winstuff.h \
486 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
488 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macucs.c
490 mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h
491 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/mimeenc.c
493 minibidi.o: ../minibidi.c ../misc.h ../puttymem.h
494 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../minibidi.c
496 misc.o: ../misc.c ../putty.h ../puttyps.h ../network.h ../misc.h \
497 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
498 ../unix/unix.h ../puttymem.h ../tree234.h \
499 ../windows/winhelp.h ../charset/charset.h
500 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../misc.c
502 mtcpnet.o: ../mac/mtcpnet.c ../putty.h ../network.h ../mac/mac.h \
503 ../puttyps.h ../misc.h ../charset/charset.h ../tree234.h \
504 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
505 ../unix/unix.h ../puttymem.h ../windows/winhelp.h
506 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/mtcpnet.c
508 nocproxy.o: ../nocproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \
509 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
510 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
511 ../windows/winhelp.h ../charset/charset.h
512 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocproxy.c
514 notiming.o: ../notiming.c ../putty.h ../puttyps.h ../network.h ../misc.h \
515 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
516 ../unix/unix.h ../puttymem.h ../tree234.h \
517 ../windows/winhelp.h ../charset/charset.h
518 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../notiming.c
520 osxctrls.o: ../macosx/osxctrls.m ../putty.h ../dialog.h ../macosx/osxclass.h \
521 ../tree234.h ../puttyps.h ../network.h ../misc.h \
522 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
523 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \
525 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxctrls.m
527 osxdlg.o: ../macosx/osxdlg.m ../putty.h ../storage.h ../dialog.h \
528 ../macosx/osxclass.h ../puttyps.h ../network.h ../misc.h \
529 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
530 ../unix/unix.h ../puttymem.h ../tree234.h \
531 ../windows/winhelp.h ../charset/charset.h
532 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxdlg.m
534 osxmain.o: ../macosx/osxmain.m ../putty.h ../macosx/osxclass.h ../puttyps.h \
535 ../network.h ../misc.h ../windows/winstuff.h \
536 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
537 ../puttymem.h ../tree234.h ../windows/winhelp.h \
539 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxmain.m
541 osxsel.o: ../macosx/osxsel.m ../putty.h ../macosx/osxclass.h ../puttyps.h \
542 ../network.h ../misc.h ../windows/winstuff.h \
543 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
544 ../puttymem.h ../tree234.h ../windows/winhelp.h \
546 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxsel.m
548 osxwin.o: ../macosx/osxwin.m ../putty.h ../terminal.h ../macosx/osxclass.h \
549 ../puttyps.h ../network.h ../misc.h ../tree234.h \
550 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
551 ../unix/unix.h ../puttymem.h ../windows/winhelp.h \
553 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxwin.m
555 otnet.o: ../mac/otnet.c ../putty.h ../network.h ../mac/mac.h ../puttyps.h \
556 ../misc.h ../charset/charset.h ../tree234.h \
557 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
558 ../unix/unix.h ../puttymem.h ../windows/winhelp.h
559 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/otnet.c
562 $(RC) $(RCFL) $(RCFLAGS) ../windows/pageant.rc pageant.res.o
564 pinger.o: ../pinger.c ../putty.h ../puttyps.h ../network.h ../misc.h \
565 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
566 ../unix/unix.h ../puttymem.h ../tree234.h \
567 ../windows/winhelp.h ../charset/charset.h
568 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pinger.c
571 $(RC) $(RCFL) $(RCFLAGS) ../windows/plink.rc plink.res.o
573 portfwd.o: ../portfwd.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
574 ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
575 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
576 ../tree234.h ../windows/winhelp.h ../charset/charset.h
577 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../portfwd.c
579 pproxy.o: ../pproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \
580 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
581 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
582 ../windows/winhelp.h ../charset/charset.h
583 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pproxy.c
585 proxy.o: ../proxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \
586 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
587 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
588 ../windows/winhelp.h ../charset/charset.h
589 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../proxy.c
591 pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.h ../storage.h \
592 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \
593 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
594 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
596 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pscp.c
599 $(RC) $(RCFL) $(RCFLAGS) ../windows/pscp.rc pscp.res.o
601 psftp.o: ../psftp.c ../putty.h ../psftp.h ../storage.h ../ssh.h ../sftp.h \
602 ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \
603 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
604 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
606 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psftp.c
609 $(RC) $(RCFL) $(RCFLAGS) ../windows/psftp.rc psftp.res.o
612 $(RC) $(RCFL) $(RCFLAGS) ../windows/putty.rc putty.res.o
614 puttygen.res.o: FORCE
615 $(RC) $(RCFL) $(RCFLAGS) ../windows/puttygen.rc puttygen.res.o
617 puttytel.res.o: FORCE
618 $(RC) $(RCFL) $(RCFLAGS) ../windows/puttytel.rc puttytel.res.o
620 raw.o: ../raw.c ../putty.h ../puttyps.h ../network.h ../misc.h \
621 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
622 ../unix/unix.h ../puttymem.h ../tree234.h \
623 ../windows/winhelp.h ../charset/charset.h
624 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../raw.c
626 rlogin.o: ../rlogin.c ../putty.h ../puttyps.h ../network.h ../misc.h \
627 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
628 ../unix/unix.h ../puttymem.h ../tree234.h \
629 ../windows/winhelp.h ../charset/charset.h
630 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../rlogin.c
632 sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h
633 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcs.c
635 sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h
636 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcsdat.c
638 sercfg.o: ../sercfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
639 ../network.h ../misc.h ../windows/winstuff.h \
640 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
641 ../puttymem.h ../tree234.h ../windows/winhelp.h \
643 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sercfg.c
645 settings.o: ../settings.c ../putty.h ../storage.h ../puttyps.h ../network.h \
646 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
647 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
648 ../windows/winhelp.h ../charset/charset.h
649 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../settings.c
651 sftp.o: ../sftp.c ../misc.h ../int64.h ../tree234.h ../sftp.h ../puttymem.h
652 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftp.c
654 sizetip.o: ../windows/sizetip.c ../putty.h ../puttyps.h ../network.h \
655 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
656 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
657 ../windows/winhelp.h ../charset/charset.h
658 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/sizetip.c
660 slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \
661 ../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c
662 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/slookup.c
664 ssh.o: ../ssh.c ../putty.h ../tree234.h ../ssh.h ../puttyps.h ../network.h \
665 ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
666 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
667 ../windows/winhelp.h ../charset/charset.h
668 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh.c
670 sshaes.o: ../sshaes.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
672 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshaes.c
674 ssharcf.o: ../ssharcf.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
676 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssharcf.c
678 sshblowf.o: ../sshblowf.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
680 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblowf.c
682 sshbn.o: ../sshbn.c ../misc.h ../ssh.h ../puttymem.h ../network.h ../int64.h
683 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshbn.c
685 sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
687 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrc.c
689 sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../puttymem.h ../network.h \
691 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrcda.c
693 sshdes.o: ../sshdes.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
695 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdes.c
697 sshdh.o: ../sshdh.c ../ssh.h ../puttymem.h ../network.h ../int64.h ../misc.h
698 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdh.c
700 sshdss.o: ../sshdss.c ../ssh.h ../misc.h ../puttymem.h ../network.h \
702 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdss.c
704 sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../puttymem.h ../network.h \
706 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdssg.c
708 sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
710 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmd5.c
712 sshprime.o: ../sshprime.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
714 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprime.c
716 sshpubk.o: ../sshpubk.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \
717 ../network.h ../puttymem.h ../int64.h ../windows/winstuff.h \
718 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
719 ../tree234.h ../windows/winhelp.h ../charset/charset.h
720 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshpubk.c
722 sshrand.o: ../sshrand.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
723 ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
724 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
725 ../tree234.h ../windows/winhelp.h ../charset/charset.h
726 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrand.c
728 sshrsa.o: ../sshrsa.c ../ssh.h ../misc.h ../puttymem.h ../network.h \
730 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsa.c
732 sshrsag.o: ../sshrsag.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
734 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsag.c
736 sshsh256.o: ../sshsh256.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
738 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh256.c
740 sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
742 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh512.c
744 sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
746 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha.c
748 sshzlib.o: ../sshzlib.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
750 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshzlib.c
752 stricmp.o: ../mac/stricmp.c ../putty.h ../puttyps.h ../network.h ../misc.h \
753 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
754 ../unix/unix.h ../puttymem.h ../tree234.h \
755 ../windows/winhelp.h ../charset/charset.h
756 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/stricmp.c
758 telnet.o: ../telnet.c ../putty.h ../puttyps.h ../network.h ../misc.h \
759 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
760 ../unix/unix.h ../puttymem.h ../tree234.h \
761 ../windows/winhelp.h ../charset/charset.h
762 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../telnet.c
764 terminal.o: ../terminal.c ../putty.h ../terminal.h ../puttyps.h ../network.h \
765 ../misc.h ../tree234.h ../windows/winstuff.h \
766 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
767 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
768 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../terminal.c
770 testback.o: ../testback.c ../putty.h ../puttyps.h ../network.h ../misc.h \
771 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
772 ../unix/unix.h ../puttymem.h ../tree234.h \
773 ../windows/winhelp.h ../charset/charset.h
774 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testback.c
777 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../time.c
779 timing.o: ../timing.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
780 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
781 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
782 ../windows/winhelp.h ../charset/charset.h
783 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../timing.c
785 toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h
786 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/toucs.c
788 tree234.o: ../tree234.c ../puttymem.h ../tree234.h
789 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../tree234.c
791 utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h
792 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/utf8.c
794 ux_x11.o: ../unix/ux_x11.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
795 ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
796 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
797 ../tree234.h ../windows/winhelp.h ../charset/charset.h
798 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/ux_x11.c
800 uxagentc.o: ../unix/uxagentc.c ../putty.h ../misc.h ../tree234.h \
801 ../puttymem.h ../puttyps.h ../network.h \
802 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
803 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
804 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxagentc.c
806 uxcfg.o: ../unix/uxcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
807 ../network.h ../misc.h ../windows/winstuff.h \
808 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
809 ../puttymem.h ../tree234.h ../windows/winhelp.h \
811 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcfg.c
813 uxcons.o: ../unix/uxcons.c ../putty.h ../storage.h ../ssh.h ../puttyps.h \
814 ../network.h ../misc.h ../puttymem.h ../int64.h \
815 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
816 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
818 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcons.c
820 uxgen.o: ../unix/uxgen.c ../putty.h ../puttyps.h ../network.h ../misc.h \
821 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
822 ../unix/unix.h ../puttymem.h ../tree234.h \
823 ../windows/winhelp.h ../charset/charset.h
824 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgen.c
826 uxmisc.o: ../unix/uxmisc.c ../putty.h ../puttyps.h ../network.h ../misc.h \
827 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
828 ../unix/unix.h ../puttymem.h ../tree234.h \
829 ../windows/winhelp.h ../charset/charset.h
830 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxmisc.c
832 uxnet.o: ../unix/uxnet.c ../putty.h ../network.h ../tree234.h ../puttyps.h \
833 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
834 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
835 ../windows/winhelp.h ../charset/charset.h
836 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnet.c
838 uxnoise.o: ../unix/uxnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \
839 ../network.h ../misc.h ../puttymem.h ../int64.h \
840 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
841 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
843 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnoise.c
845 uxplink.o: ../unix/uxplink.c ../putty.h ../storage.h ../tree234.h \
846 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
847 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
848 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
849 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxplink.c
851 uxprint.o: ../unix/uxprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \
852 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
853 ../unix/unix.h ../puttymem.h ../tree234.h \
854 ../windows/winhelp.h ../charset/charset.h
855 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxprint.c
857 uxproxy.o: ../unix/uxproxy.c ../tree234.h ../putty.h ../network.h ../proxy.h \
858 ../puttyps.h ../misc.h ../windows/winstuff.h \
859 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
860 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
861 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxproxy.c
863 uxpterm.o: ../unix/uxpterm.c ../putty.h ../puttyps.h ../network.h ../misc.h \
864 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
865 ../unix/unix.h ../puttymem.h ../tree234.h \
866 ../windows/winhelp.h ../charset/charset.h
867 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpterm.c
869 uxpty.o: ../unix/uxpty.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
870 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
871 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
872 ../windows/winhelp.h ../charset/charset.h
873 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpty.c
875 uxputty.o: ../unix/uxputty.c ../putty.h ../storage.h ../puttyps.h \
876 ../network.h ../misc.h ../windows/winstuff.h \
877 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
878 ../puttymem.h ../tree234.h ../windows/winhelp.h \
880 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxputty.c
882 uxsel.o: ../unix/uxsel.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
883 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
884 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
885 ../windows/winhelp.h ../charset/charset.h
886 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsel.c
888 uxser.o: ../unix/uxser.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
889 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
890 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
891 ../windows/winhelp.h ../charset/charset.h
892 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxser.c
894 uxsftp.o: ../unix/uxsftp.c ../putty.h ../psftp.h ../int64.h ../puttyps.h \
895 ../network.h ../misc.h ../windows/winstuff.h \
896 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
897 ../puttymem.h ../tree234.h ../windows/winhelp.h \
899 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftp.c
901 uxsignal.o: ../unix/uxsignal.c
902 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsignal.c
904 uxstore.o: ../unix/uxstore.c ../putty.h ../storage.h ../tree234.h \
905 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
906 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
907 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
908 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxstore.c
910 uxucs.o: ../unix/uxucs.c ../putty.h ../charset/charset.h ../terminal.h \
911 ../misc.h ../puttyps.h ../network.h ../tree234.h \
912 ../puttymem.h ../windows/winstuff.h ../mac/macstuff.h \
913 ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h
914 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxucs.c
916 vsnprint.o: ../mac/vsnprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \
917 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
918 ../unix/unix.h ../puttymem.h ../tree234.h \
919 ../windows/winhelp.h ../charset/charset.h
920 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/vsnprint.c
922 wcwidth.o: ../wcwidth.c ../putty.h ../puttyps.h ../network.h ../misc.h \
923 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
924 ../unix/unix.h ../puttymem.h ../tree234.h \
925 ../windows/winhelp.h ../charset/charset.h
926 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wcwidth.c
928 wildcard.o: ../wildcard.c ../putty.h ../puttyps.h ../network.h ../misc.h \
929 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
930 ../unix/unix.h ../puttymem.h ../tree234.h \
931 ../windows/winhelp.h ../charset/charset.h
932 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wildcard.c
934 wincfg.o: ../windows/wincfg.c ../putty.h ../dialog.h ../storage.h \
935 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
936 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
937 ../puttymem.h ../tree234.h ../windows/winhelp.h \
939 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincfg.c
941 wincons.o: ../windows/wincons.c ../putty.h ../storage.h ../ssh.h \
942 ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \
943 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
944 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
946 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincons.c
948 winctrls.o: ../windows/winctrls.c ../putty.h ../misc.h ../dialog.h \
949 ../puttyps.h ../network.h ../puttymem.h \
950 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
951 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
953 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winctrls.c
955 windefs.o: ../windows/windefs.c ../putty.h ../puttyps.h ../network.h \
956 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
957 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
958 ../windows/winhelp.h ../charset/charset.h
959 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windefs.c
961 windlg.o: ../windows/windlg.c ../putty.h ../ssh.h ../windows/win_res.h \
962 ../storage.h ../dialog.h ../puttyps.h ../network.h ../misc.h \
963 ../puttymem.h ../int64.h ../windows/winstuff.h \
964 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
965 ../tree234.h ../windows/winhelp.h ../charset/charset.h
966 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windlg.c
968 window.o: ../windows/window.c ../putty.h ../terminal.h ../storage.h \
969 ../windows/win_res.h ../puttyps.h ../network.h ../misc.h \
970 ../tree234.h ../windows/winstuff.h ../mac/macstuff.h \
971 ../macosx/osx.h ../unix/unix.h ../puttymem.h \
972 ../windows/winhelp.h ../charset/charset.h
973 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/window.c
975 winhandl.o: ../windows/winhandl.c ../putty.h ../puttyps.h ../network.h \
976 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
977 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
978 ../windows/winhelp.h ../charset/charset.h
979 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhandl.c
981 winhelp.o: ../windows/winhelp.c ../putty.h ../puttyps.h ../network.h \
982 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
983 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
984 ../windows/winhelp.h ../charset/charset.h
985 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhelp.c
987 winmisc.o: ../windows/winmisc.c ../putty.h ../puttyps.h ../network.h \
988 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
989 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
990 ../windows/winhelp.h ../charset/charset.h
991 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winmisc.c
993 winnet.o: ../windows/winnet.c ../putty.h ../network.h ../tree234.h \
994 ../puttyps.h ../misc.h ../windows/winstuff.h \
995 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
996 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
997 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnet.c
999 winnoise.o: ../windows/winnoise.c ../putty.h ../ssh.h ../storage.h \
1000 ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \
1001 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
1002 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
1003 ../charset/charset.h
1004 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnoise.c
1006 winpgen.o: ../windows/winpgen.c ../putty.h ../ssh.h ../puttyps.h \
1007 ../network.h ../misc.h ../puttymem.h ../int64.h \
1008 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
1009 ../unix/unix.h ../tree234.h ../windows/winhelp.h \
1010 ../charset/charset.h
1011 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgen.c
1013 winpgnt.o: ../windows/winpgnt.c ../putty.h ../ssh.h ../misc.h ../tree234.h \
1014 ../puttyps.h ../network.h ../puttymem.h ../int64.h \
1015 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
1016 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
1017 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgnt.c
1019 winpgntc.o: ../windows/winpgntc.c ../putty.h ../puttyps.h ../network.h \
1020 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
1021 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
1022 ../windows/winhelp.h ../charset/charset.h
1023 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgntc.c
1025 winplink.o: ../windows/winplink.c ../putty.h ../storage.h ../tree234.h \
1026 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
1027 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
1028 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
1029 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winplink.c
1031 winprint.o: ../windows/winprint.c ../putty.h ../puttyps.h ../network.h \
1032 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
1033 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
1034 ../windows/winhelp.h ../charset/charset.h
1035 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winprint.c
1037 winproxy.o: ../windows/winproxy.c ../tree234.h ../putty.h ../network.h \
1038 ../proxy.h ../puttyps.h ../misc.h ../windows/winstuff.h \
1039 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
1040 ../puttymem.h ../windows/winhelp.h ../charset/charset.h
1041 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winproxy.c
1043 winser.o: ../windows/winser.c ../putty.h ../puttyps.h ../network.h ../misc.h \
1044 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
1045 ../unix/unix.h ../puttymem.h ../tree234.h \
1046 ../windows/winhelp.h ../charset/charset.h
1047 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winser.c
1049 winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../int64.h \
1050 ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
1051 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
1052 ../puttymem.h ../tree234.h ../windows/winhelp.h \
1053 ../charset/charset.h
1054 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsftp.c
1056 winstore.o: ../windows/winstore.c ../putty.h ../storage.h ../puttyps.h \
1057 ../network.h ../misc.h ../windows/winstuff.h \
1058 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
1059 ../puttymem.h ../tree234.h ../windows/winhelp.h \
1060 ../charset/charset.h
1061 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winstore.c
1063 wintime.o: ../windows/wintime.c ../putty.h ../puttyps.h ../network.h \
1064 ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
1065 ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
1066 ../windows/winhelp.h ../charset/charset.h
1067 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wintime.c
1069 winucs.o: ../windows/winucs.c ../putty.h ../terminal.h ../misc.h \
1070 ../puttyps.h ../network.h ../tree234.h ../puttymem.h \
1071 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
1072 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
1073 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winucs.c
1075 winutils.o: ../windows/winutils.c ../putty.h ../misc.h ../puttyps.h \
1076 ../network.h ../puttymem.h ../windows/winstuff.h \
1077 ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
1078 ../tree234.h ../windows/winhelp.h ../charset/charset.h
1079 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winutils.c
1081 x11fwd.o: ../x11fwd.c ../putty.h ../ssh.h ../tree234.h ../puttyps.h \
1082 ../network.h ../misc.h ../puttymem.h ../int64.h \
1083 ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
1084 ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
1085 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../x11fwd.c
1087 xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h
1088 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/xenc.c
1090 xkeysym.o: ../unix/xkeysym.c ../misc.h ../puttymem.h
1091 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xkeysym.c
1093 xpmptcfg.o: ../unix/xpmptcfg.c
1094 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmptcfg.c
1096 xpmpterm.o: ../unix/xpmpterm.c
1097 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpterm.c
1099 xpmpucfg.o: ../unix/xpmpucfg.c
1100 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpucfg.c
1102 xpmputty.o: ../unix/xpmputty.c
1103 $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmputty.c
1107 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c
1110 rm -f *.o *.exe *.res.o *.map