# Makefile for putty under X/GTK and Unix. # # This file was created by `mkfiles.pl' from the `Recipe' file. # DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead. # # Extra options you can set: # # - COMPAT=-DAUTO_WINSOCK (Windows only) # Causes PuTTY to assume that includes its own WinSock # header file, so that it won't try to include . # # - COMPAT=-DWINSOCK_TWO (Windows only) # Causes the PuTTY utilities to include instead of # , except Plink which _needs_ WinSock 2 so it already # does this. # # - COMPAT=-DNO_SECURITY (Windows only) # Disables use of , which is not available with some # development environments (such as very old versions of the # mingw/Cygwin GNU toolchain). This has the following effects: # - Pageant won't care about the local user ID of processes # accessing it; a version of Pageant built with this option # will therefore refuse to run under NT-series OSes on # security grounds (although it will run fine on Win95-series # OSes where there is no access control anyway). # - SSH connection sharing is disabled. # - There is no support for restriction of the process ACLs. # # - COMPAT=-DNO_MULTIMON (Windows only) # Disables PuTTY's use of , which is not available # with some development environments. This means that PuTTY's # full-screen mode (configurable to work on Alt-Enter) will # not behave usefully in a multi-monitor environment. # # - COMPAT=-DNO_HTMLHELP (Windows only) # Disables PuTTY's use of , which is not available # with some development environments. # # If you don't have this header, you may be able to use the copy # supplied with HTML Help Workshop. # # - RCFL=-DNO_MANIFESTS (Windows only) # Disables inclusion of XML application manifests in the PuTTY # binaries. This may be necessary to build for 64-bit Windows; # the manifests are only included to use the XP GUI style on # Windows XP, and the architecture tags are a lie on 64-bit. # # - COMPAT=-DNO_IPV6 # Disables PuTTY's ability to make IPv6 connections, enabling # it to compile under development environments which do not # support IPv6 in their header files. # # - COMPAT=-DNO_GSSAPI # Disables PuTTY's ability to use GSSAPI functions for # authentication and key exchange. # # - COMPAT=-DSTATIC_GSSAPI # Causes PuTTY to try to link statically against the GSSAPI # library instead of the default of doing it at run time. # # - COMPAT=-DMSVC4 (Windows only) # - RCFL=-DMSVC4 # Makes a couple of minor changes so that PuTTY compiles using # MSVC 4. You will also need -DNO_SECURITY and -DNO_MULTIMON. # # - COMPAT=-DNO_SECUREZEROMEMORY (Windows only) # Disables PuTTY's use of SecureZeroMemory(), which is missing # from some environments' header files. # # - XFLAGS=-DDEBUG # Causes PuTTY to enable internal debugging. # # - XFLAGS=-DMALLOC_LOG # Causes PuTTY to emit a file called putty_mem.log, logging every # memory allocation and free, so you can track memory leaks. # # - XFLAGS=-DMINEFIELD (Windows only) # Causes PuTTY to use a custom memory allocator, similar in # concept to Electric Fence, in place of regular malloc(). Wastes # huge amounts of RAM, but should cause heap-corruption bugs to # show up as GPFs at the point of failure rather than appearing # later on as second-level damage. # # - XFLAGS=-DFUZZING # Builds a version of PuTTY with some tweaks to make fuzz testing # easier: the SSH random number generator is replaced by one that # always returns the same thing. Note that this makes SSH # completely insecure -- a FUZZING build should never be used to # connect to a real server. # You can define this path to point at your tools if you need to # TOOLPATH = /opt/gcc/bin CC = $(TOOLPATH)cc # If necessary set the path to krb5-config here KRB5CONFIG=krb5-config # You can manually set this to `gtk-config' or `pkg-config gtk+-1.2' # (depending on what works on your system) if you want to enforce # building with GTK 1.2, or you can set it to `pkg-config gtk+-2.0 x11' # if you want to enforce 2.0. The default is to try 2.0 and fall back # to 1.2 if it isn't found. GTK_CONFIG = sh -c 'pkg-config gtk+-3.0 x11 $$0 2>/dev/null || pkg-config gtk+-2.0 x11 $$0 2>/dev/null || gtk-config $$0' -include Makefile.local unexport CFLAGS # work around a weird issue with krb5-config CFLAGS = -O2 -Wall -std=gnu99 -Wvla -g -I.././ -I../charset/ -I../windows/ \ -I../unix/ $(shell $(GTK_CONFIG) --cflags) -D _FILE_OFFSET_BITS=64 XLDFLAGS = $(LDFLAGS) $(shell $(GTK_CONFIG) --libs) ULDFLAGS = $(LDFLAGS) ifeq (,$(findstring NO_GSSAPI,$(COMPAT))) ifeq (,$(findstring STATIC_GSSAPI,$(COMPAT))) XLDFLAGS+= -ldl ULDFLAGS+= -ldl else CFLAGS+= -DNO_LIBDL $(shell $(KRB5CONFIG) --cflags gssapi) XLDFLAGS+= $(shell $(KRB5CONFIG) --libs gssapi) ULDFLAGS+= $(shell $(KRB5CONFIG) --libs gssapi) endif endif INSTALL=install INSTALL_PROGRAM=$(INSTALL) INSTALL_DATA=$(INSTALL) prefix=/usr/local exec_prefix=$(prefix) bindir=$(exec_prefix)/bin mandir=$(prefix)/man man1dir=$(mandir)/man1 .SUFFIXES: all: cgtest fuzzterm osxlaunch pageant plink pscp psftp psocks psusan pterm \ ptermapp putty puttyapp puttygen puttytel testcrypt testsc \ testzlib uppity cgtest: cgtest.o conf.o console.o ecc.o import.o marshal.o memory.o \ millerrabin.o misc.o mpint.o mpunsafe.o notiming.o pockle.o \ primecandidate.o smallprimes.o sshaes.o sshargon2.o \ sshauxcrypt.o sshbcrypt.o sshblake2.o sshblowf.o sshdes.o \ sshdss.o sshdssg.o sshecc.o sshecdsag.o sshhmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshsh256.o sshsh512.o sshsha.o sshsha3.o stripctrl.o time.o \ tree234.o utils.o uxcons.o uxgen.o uxmisc.o uxnogtk.o \ uxnoise.o uxpoll.o uxstore.o uxutils.o version.o wcwidth.o $(CC) -o $@ cgtest.o conf.o console.o ecc.o import.o marshal.o \ memory.o millerrabin.o misc.o mpint.o mpunsafe.o notiming.o \ pockle.o primecandidate.o smallprimes.o sshaes.o sshargon2.o \ sshauxcrypt.o sshbcrypt.o sshblake2.o sshblowf.o sshdes.o \ sshdss.o sshdssg.o sshecc.o sshecdsag.o sshhmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshsh256.o sshsh512.o sshsha.o sshsha3.o stripctrl.o time.o \ tree234.o utils.o uxcons.o uxgen.o uxmisc.o uxnogtk.o \ uxnoise.o uxpoll.o uxstore.o uxutils.o version.o wcwidth.o \ $(ULDFLAGS) fuzzterm: be_none.o callback.o conf.o config.o dialog.o fromucs.o fuzzterm.o \ localenc.o logging.o macenc.o marshal.o memory.o mimeenc.o \ minibidi.o misc.o miscucs.o sbcs.o sbcsdat.o settings.o \ slookup.o stripctrl.o terminal.o time.o timing.o toucs.o \ tree234.o utf8.o utils.o uxcfg.o uxmisc.o uxnogtk.o \ uxprint.o uxstore.o uxucs.o version.o wcwidth.o xenc.o $(CC) -o $@ be_none.o callback.o conf.o config.o dialog.o fromucs.o \ fuzzterm.o localenc.o logging.o macenc.o marshal.o memory.o \ mimeenc.o minibidi.o misc.o miscucs.o sbcs.o sbcsdat.o \ settings.o slookup.o stripctrl.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o uxcfg.o uxmisc.o uxnogtk.o \ uxprint.o uxstore.o uxucs.o version.o wcwidth.o xenc.o \ $(ULDFLAGS) osxlaunch: osxlaunch.o $(CC) -o $@ osxlaunch.o $(ULDFLAGS) pageant: aqsync.o be_misc.o be_none.o callback.o conf.o console.o ecc.o \ errsock.o gtkask.o gtkmisc.o logging.o marshal.o memory.o \ misc.o mpint.o nocproxy.o nogss.o nullplug.o pageant.o \ proxy.o settings.o sshaes.o sshargon2.o sshauxcrypt.o \ sshblake2.o sshdes.o sshdss.o sshecc.o sshhmac.o sshmd5.o \ sshprng.o sshpubk.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o stripctrl.o time.o timing.o tree234.o utils.o \ ux_x11.o uxagentc.o uxagentsock.o uxcliloop.o uxcons.o \ uxfdsock.o uxmisc.o uxnet.o uxnoise.o uxpeer.o uxpgnt.o \ uxpoll.o uxproxy.o uxsel.o uxsignal.o uxstore.o uxutils.o \ version.o wcwidth.o x11fwd.o $(CC) -o $@ aqsync.o be_misc.o be_none.o callback.o conf.o console.o \ ecc.o errsock.o gtkask.o gtkmisc.o logging.o marshal.o \ memory.o misc.o mpint.o nocproxy.o nogss.o nullplug.o \ pageant.o proxy.o settings.o sshaes.o sshargon2.o \ sshauxcrypt.o sshblake2.o sshdes.o sshdss.o sshecc.o \ sshhmac.o sshmd5.o sshprng.o sshpubk.o sshrsa.o sshsh256.o \ sshsh512.o sshsha.o sshsha3.o stripctrl.o time.o timing.o \ tree234.o utils.o ux_x11.o uxagentc.o uxagentsock.o \ uxcliloop.o uxcons.o uxfdsock.o uxmisc.o uxnet.o uxnoise.o \ uxpeer.o uxpgnt.o uxpoll.o uxproxy.o uxsel.o uxsignal.o \ uxstore.o uxutils.o version.o wcwidth.o x11fwd.o $(XLDFLAGS) plink: agentf.o aqsync.o be_all_s.o be_misc.o callback.o clicons.o cmdline.o \ conf.o console.o cproxy.o ecc.o errsock.o ldisc.o logging.o \ mainchan.o marshal.o memory.o misc.o mpint.o noterm.o \ nullplug.o pgssapi.o pinger.o portfwd.o proxy.o raw.o \ rlogin.o sessprep.o settings.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o supdup.o telnet.o time.o timing.o tree234.o \ utils.o ux_x11.o uxagentc.o uxcliloop.o uxcons.o uxfdsock.o \ uxgss.o uxmisc.o uxnet.o uxnogtk.o uxnoise.o uxpeer.o \ uxplink.o uxpoll.o uxproxy.o uxsel.o uxser.o uxshare.o \ uxsignal.o uxstore.o uxutils.o version.o wcwidth.o \ wildcard.o x11fwd.o $(CC) -o $@ agentf.o aqsync.o be_all_s.o be_misc.o callback.o \ clicons.o cmdline.o conf.o console.o cproxy.o ecc.o \ errsock.o ldisc.o logging.o mainchan.o marshal.o memory.o \ misc.o mpint.o noterm.o nullplug.o pgssapi.o pinger.o \ portfwd.o proxy.o raw.o rlogin.o sessprep.o settings.o ssh.o \ ssh1bpp.o ssh1censor.o ssh1connection.o \ ssh1connection-client.o ssh1login.o ssh2bpp.o ssh2bpp-bare.o \ ssh2censor.o ssh2connection.o ssh2connection-client.o \ ssh2kex-client.o ssh2transhk.o ssh2transport.o \ ssh2userauth.o sshaes.o ssharcf.o sshargon2.o sshauxcrypt.o \ sshblake2.o sshblowf.o sshccp.o sshcommon.o sshcrc.o \ sshcrcda.o sshdes.o sshdh.o sshdss.o sshecc.o sshgssc.o \ sshhmac.o sshmac.o sshmd5.o sshprng.o sshpubk.o sshrand.o \ sshrsa.o sshsh256.o sshsh512.o sshsha.o sshsha3.o sshshare.o \ sshutils.o sshverstring.o sshzlib.o stripctrl.o supdup.o \ telnet.o time.o timing.o tree234.o utils.o ux_x11.o \ uxagentc.o uxcliloop.o uxcons.o uxfdsock.o uxgss.o uxmisc.o \ uxnet.o uxnogtk.o uxnoise.o uxpeer.o uxplink.o uxpoll.o \ uxproxy.o uxsel.o uxser.o uxshare.o uxsignal.o uxstore.o \ uxutils.o version.o wcwidth.o wildcard.o x11fwd.o \ $(ULDFLAGS) pscp: agentf.o aqsync.o be_misc.o be_ssh.o callback.o clicons.o cmdline.o \ conf.o console.o cproxy.o ecc.o errsock.o logging.o \ mainchan.o marshal.o memory.o misc.o mpint.o nullplug.o \ pgssapi.o pinger.o portfwd.o proxy.o pscp.o psftpcommon.o \ settings.o sftp.o sftpcommon.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o time.o timing.o tree234.o utils.o uxagentc.o \ uxcliloop.o uxcons.o uxfdsock.o uxgss.o uxmisc.o uxnet.o \ uxnogtk.o uxnoise.o uxpeer.o uxpoll.o uxproxy.o uxsel.o \ uxsftp.o uxshare.o uxstore.o uxutils.o version.o wcwidth.o \ wildcard.o x11fwd.o $(CC) -o $@ agentf.o aqsync.o be_misc.o be_ssh.o callback.o \ clicons.o cmdline.o conf.o console.o cproxy.o ecc.o \ errsock.o logging.o mainchan.o marshal.o memory.o misc.o \ mpint.o nullplug.o pgssapi.o pinger.o portfwd.o proxy.o \ pscp.o psftpcommon.o settings.o sftp.o sftpcommon.o ssh.o \ ssh1bpp.o ssh1censor.o ssh1connection.o \ ssh1connection-client.o ssh1login.o ssh2bpp.o ssh2bpp-bare.o \ ssh2censor.o ssh2connection.o ssh2connection-client.o \ ssh2kex-client.o ssh2transhk.o ssh2transport.o \ ssh2userauth.o sshaes.o ssharcf.o sshargon2.o sshauxcrypt.o \ sshblake2.o sshblowf.o sshccp.o sshcommon.o sshcrc.o \ sshcrcda.o sshdes.o sshdh.o sshdss.o sshecc.o sshgssc.o \ sshhmac.o sshmac.o sshmd5.o sshprng.o sshpubk.o sshrand.o \ sshrsa.o sshsh256.o sshsh512.o sshsha.o sshsha3.o sshshare.o \ sshutils.o sshverstring.o sshzlib.o stripctrl.o time.o \ timing.o tree234.o utils.o uxagentc.o uxcliloop.o uxcons.o \ uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnogtk.o uxnoise.o \ uxpeer.o uxpoll.o uxproxy.o uxsel.o uxsftp.o uxshare.o \ uxstore.o uxutils.o version.o wcwidth.o wildcard.o x11fwd.o \ $(ULDFLAGS) psftp: agentf.o aqsync.o be_misc.o be_ssh.o callback.o clicons.o cmdline.o \ conf.o console.o cproxy.o ecc.o errsock.o logging.o \ mainchan.o marshal.o memory.o misc.o mpint.o nullplug.o \ pgssapi.o pinger.o portfwd.o proxy.o psftp.o psftpcommon.o \ settings.o sftp.o sftpcommon.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o time.o timing.o tree234.o utils.o uxagentc.o \ uxcliloop.o uxcons.o uxfdsock.o uxgss.o uxmisc.o uxnet.o \ uxnogtk.o uxnoise.o uxpeer.o uxpoll.o uxproxy.o uxsel.o \ uxsftp.o uxshare.o uxstore.o uxutils.o version.o wcwidth.o \ wildcard.o x11fwd.o $(CC) -o $@ agentf.o aqsync.o be_misc.o be_ssh.o callback.o \ clicons.o cmdline.o conf.o console.o cproxy.o ecc.o \ errsock.o logging.o mainchan.o marshal.o memory.o misc.o \ mpint.o nullplug.o pgssapi.o pinger.o portfwd.o proxy.o \ psftp.o psftpcommon.o settings.o sftp.o sftpcommon.o ssh.o \ ssh1bpp.o ssh1censor.o ssh1connection.o \ ssh1connection-client.o ssh1login.o ssh2bpp.o ssh2bpp-bare.o \ ssh2censor.o ssh2connection.o ssh2connection-client.o \ ssh2kex-client.o ssh2transhk.o ssh2transport.o \ ssh2userauth.o sshaes.o ssharcf.o sshargon2.o sshauxcrypt.o \ sshblake2.o sshblowf.o sshccp.o sshcommon.o sshcrc.o \ sshcrcda.o sshdes.o sshdh.o sshdss.o sshecc.o sshgssc.o \ sshhmac.o sshmac.o sshmd5.o sshprng.o sshpubk.o sshrand.o \ sshrsa.o sshsh256.o sshsh512.o sshsha.o sshsha3.o sshshare.o \ sshutils.o sshverstring.o sshzlib.o stripctrl.o time.o \ timing.o tree234.o utils.o uxagentc.o uxcliloop.o uxcons.o \ uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnogtk.o uxnoise.o \ uxpeer.o uxpoll.o uxproxy.o uxsel.o uxsftp.o uxshare.o \ uxstore.o uxutils.o version.o wcwidth.o wildcard.o x11fwd.o \ $(ULDFLAGS) psocks: be_misc.o callback.o conf.o console.o errsock.o logging.o marshal.o \ memory.o misc.o nocproxy.o norand.o portfwd.o proxy.o \ psocks.o sshutils.o stripctrl.o time.o timing.o tree234.o \ utils.o uxcliloop.o uxcons.o uxfdsock.o uxmisc.o uxnet.o \ uxnogtk.o uxpeer.o uxpoll.o uxproxy.o uxsel.o uxsignal.o \ uxsocks.o version.o wcwidth.o $(CC) -o $@ be_misc.o callback.o conf.o console.o errsock.o \ logging.o marshal.o memory.o misc.o nocproxy.o norand.o \ portfwd.o proxy.o psocks.o sshutils.o stripctrl.o time.o \ timing.o tree234.o utils.o uxcliloop.o uxcons.o uxfdsock.o \ uxmisc.o uxnet.o uxnogtk.o uxpeer.o uxpoll.o uxproxy.o \ uxsel.o uxsignal.o uxsocks.o version.o wcwidth.o $(ULDFLAGS) psusan: be_misc.o be_none.o callback.o conf.o cproxy.o ecc.o errsock.o \ logging.o marshal.o memory.o millerrabin.o misc.o mpint.o \ mpunsafe.o nogss.o nullplug.o pgssapi.o pockle.o portfwd.o \ primecandidate.o procnet.o proxy.o scpserver.o sesschan.o \ settings.o sftpcommon.o sftpserver.o smallprimes.o ssh1bpp.o \ ssh1censor.o ssh1connection.o ssh1connection-server.o \ ssh1login-server.o ssh2bpp.o ssh2bpp-bare.o ssh2censor.o \ ssh2connection.o ssh2connection-server.o ssh2kex-server.o \ ssh2transhk.o ssh2transport.o ssh2userauth-server.o sshaes.o \ ssharcf.o sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o \ sshccp.o sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \ sshdss.o sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshserver.o sshsh256.o sshsh512.o sshsha.o sshsha3.o \ sshutils.o sshverstring.o sshzlib.o stripctrl.o time.o \ timing.o tree234.o utils.o ux_x11.o uxagentsock.o \ uxcliloop.o uxfdsock.o uxmisc.o uxnet.o uxnogtk.o uxnoise.o \ uxpeer.o uxpoll.o uxproxy.o uxpsusan.o uxpty.o uxsel.o \ uxsftpserver.o uxsignal.o uxstore.o uxutils.o version.o \ wcwidth.o wildcard.o x11fwd.o $(CC) -o $@ be_misc.o be_none.o callback.o conf.o cproxy.o ecc.o \ errsock.o logging.o marshal.o memory.o millerrabin.o misc.o \ mpint.o mpunsafe.o nogss.o nullplug.o pgssapi.o pockle.o \ portfwd.o primecandidate.o procnet.o proxy.o scpserver.o \ sesschan.o settings.o sftpcommon.o sftpserver.o \ smallprimes.o ssh1bpp.o ssh1censor.o ssh1connection.o \ ssh1connection-server.o ssh1login-server.o ssh2bpp.o \ ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-server.o ssh2kex-server.o ssh2transhk.o \ ssh2transport.o ssh2userauth-server.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprime.o \ sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o sshserver.o \ sshsh256.o sshsh512.o sshsha.o sshsha3.o sshutils.o \ sshverstring.o sshzlib.o stripctrl.o time.o timing.o \ tree234.o utils.o ux_x11.o uxagentsock.o uxcliloop.o \ uxfdsock.o uxmisc.o uxnet.o uxnogtk.o uxnoise.o uxpeer.o \ uxpoll.o uxproxy.o uxpsusan.o uxpty.o uxsel.o uxsftpserver.o \ uxsignal.o uxstore.o uxutils.o version.o wcwidth.o \ wildcard.o x11fwd.o $(ULDFLAGS) pterm: be_none.o callback.o cmdline.o conf.o config.o dialog.o fromucs.o \ gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o gtkmain.o \ gtkmisc.o gtkwin.o ldisc.o localenc.o logging.o macenc.o \ marshal.o memory.o mimeenc.o minibidi.o misc.o miscucs.o \ nocproxy.o nogss.o sbcs.o sbcsdat.o sessprep.o settings.o \ slookup.o stripctrl.o terminal.o time.o timing.o toucs.o \ tree234.o utf8.o utils.o uxcfg.o uxmisc.o uxprint.o \ uxpterm.o uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o \ version.o wcwidth.o x11misc.o xenc.o xkeysym.o xpmptcfg.o \ xpmpterm.o $(CC) -o $@ be_none.o callback.o cmdline.o conf.o config.o dialog.o \ fromucs.o gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o \ gtkmain.o gtkmisc.o gtkwin.o ldisc.o localenc.o logging.o \ macenc.o marshal.o memory.o mimeenc.o minibidi.o misc.o \ miscucs.o nocproxy.o nogss.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o stripctrl.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o uxcfg.o uxmisc.o uxprint.o \ uxpterm.o uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o \ version.o wcwidth.o x11misc.o xenc.o xkeysym.o xpmptcfg.o \ xpmpterm.o $(XLDFLAGS) ptermapp: be_none.o callback.o conf.o config.o dialog.o fromucs.o gtkapp.o \ gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o gtkmisc.o \ gtkwin.o ldisc.o localenc.o logging.o macenc.o marshal.o \ memory.o mimeenc.o minibidi.o misc.o miscucs.o nocmdline.o \ nocproxy.o nogss.o sbcs.o sbcsdat.o sessprep.o settings.o \ slookup.o stripctrl.o terminal.o time.o timing.o toucs.o \ tree234.o utf8.o utils.o uxcfg.o uxmisc.o uxprint.o \ uxpterm.o uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o \ version.o wcwidth.o x11misc.o xenc.o xkeysym.o xpmptcfg.o \ xpmpterm.o $(CC) -o $@ be_none.o callback.o conf.o config.o dialog.o fromucs.o \ gtkapp.o gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o \ gtkmisc.o gtkwin.o ldisc.o localenc.o logging.o macenc.o \ marshal.o memory.o mimeenc.o minibidi.o misc.o miscucs.o \ nocmdline.o nocproxy.o nogss.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o stripctrl.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o uxcfg.o uxmisc.o uxprint.o \ uxpterm.o uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o \ version.o wcwidth.o x11misc.o xenc.o xkeysym.o xpmptcfg.o \ xpmpterm.o $(XLDFLAGS) putty: agentf.o aqsync.o be_all_s.o be_misc.o callback.o cmdline.o conf.o \ config.o cproxy.o dialog.o ecc.o errsock.o fromucs.o \ gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o gtkmain.o \ gtkmisc.o gtkwin.o ldisc.o localenc.o logging.o macenc.o \ mainchan.o marshal.o memory.o mimeenc.o minibidi.o misc.o \ miscucs.o mpint.o nullplug.o pgssapi.o pinger.o portfwd.o \ proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o supdup.o telnet.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o ux_x11.o uxagentc.o uxcfg.o \ uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnoise.o uxpeer.o \ uxpoll.o uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o \ uxshare.o uxsignal.o uxstore.o uxucs.o uxutils.o version.o \ wcwidth.o wildcard.o x11fwd.o x11misc.o xenc.o xkeysym.o \ xpmpucfg.o xpmputty.o $(CC) -o $@ agentf.o aqsync.o be_all_s.o be_misc.o callback.o \ cmdline.o conf.o config.o cproxy.o dialog.o ecc.o errsock.o \ fromucs.o gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o \ gtkmain.o gtkmisc.o gtkwin.o ldisc.o localenc.o logging.o \ macenc.o mainchan.o marshal.o memory.o mimeenc.o minibidi.o \ misc.o miscucs.o mpint.o nullplug.o pgssapi.o pinger.o \ portfwd.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o supdup.o telnet.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o ux_x11.o uxagentc.o uxcfg.o \ uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnoise.o uxpeer.o \ uxpoll.o uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o \ uxshare.o uxsignal.o uxstore.o uxucs.o uxutils.o version.o \ wcwidth.o wildcard.o x11fwd.o x11misc.o xenc.o xkeysym.o \ xpmpucfg.o xpmputty.o $(XLDFLAGS) puttyapp: agentf.o aqsync.o be_all_s.o be_misc.o callback.o conf.o config.o \ cproxy.o dialog.o ecc.o errsock.o fromucs.o gtkapp.o \ gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o gtkmisc.o \ gtkwin.o ldisc.o localenc.o logging.o macenc.o mainchan.o \ marshal.o memory.o mimeenc.o minibidi.o misc.o miscucs.o \ mpint.o nocmdline.o nullplug.o pgssapi.o pinger.o portfwd.o \ proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o supdup.o telnet.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o ux_x11.o uxagentc.o uxcfg.o \ uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnoise.o uxpeer.o \ uxpoll.o uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o \ uxshare.o uxsignal.o uxstore.o uxucs.o uxutils.o version.o \ wcwidth.o wildcard.o x11fwd.o x11misc.o xenc.o xkeysym.o \ xpmpucfg.o xpmputty.o $(CC) -o $@ agentf.o aqsync.o be_all_s.o be_misc.o callback.o conf.o \ config.o cproxy.o dialog.o ecc.o errsock.o fromucs.o \ gtkapp.o gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o gtkfont.o \ gtkmisc.o gtkwin.o ldisc.o localenc.o logging.o macenc.o \ mainchan.o marshal.o memory.o mimeenc.o minibidi.o misc.o \ miscucs.o mpint.o nocmdline.o nullplug.o pgssapi.o pinger.o \ portfwd.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o ssh.o ssh1bpp.o ssh1censor.o \ ssh1connection.o ssh1connection-client.o ssh1login.o \ ssh2bpp.o ssh2bpp-bare.o ssh2censor.o ssh2connection.o \ ssh2connection-client.o ssh2kex-client.o ssh2transhk.o \ ssh2transport.o ssh2userauth.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o sshprng.o \ sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o sshshare.o sshutils.o sshverstring.o sshzlib.o \ stripctrl.o supdup.o telnet.o terminal.o time.o timing.o \ toucs.o tree234.o utf8.o utils.o ux_x11.o uxagentc.o uxcfg.o \ uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnoise.o uxpeer.o \ uxpoll.o uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o \ uxshare.o uxsignal.o uxstore.o uxucs.o uxutils.o version.o \ wcwidth.o wildcard.o x11fwd.o x11misc.o xenc.o xkeysym.o \ xpmpucfg.o xpmputty.o $(XLDFLAGS) puttygen: cmdgen.o conf.o console.o ecc.o import.o marshal.o memory.o \ millerrabin.o misc.o mpint.o mpunsafe.o notiming.o pockle.o \ primecandidate.o smallprimes.o sshaes.o sshargon2.o \ sshauxcrypt.o sshbcrypt.o sshblake2.o sshblowf.o sshdes.o \ sshdss.o sshdssg.o sshecc.o sshecdsag.o sshhmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshsh256.o sshsh512.o sshsha.o sshsha3.o stripctrl.o time.o \ tree234.o utils.o uxcons.o uxgen.o uxmisc.o uxnogtk.o \ uxnoise.o uxpoll.o uxstore.o uxutils.o version.o wcwidth.o $(CC) -o $@ cmdgen.o conf.o console.o ecc.o import.o marshal.o \ memory.o millerrabin.o misc.o mpint.o mpunsafe.o notiming.o \ pockle.o primecandidate.o smallprimes.o sshaes.o sshargon2.o \ sshauxcrypt.o sshbcrypt.o sshblake2.o sshblowf.o sshdes.o \ sshdss.o sshdssg.o sshecc.o sshecdsag.o sshhmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshsh256.o sshsh512.o sshsha.o sshsha3.o stripctrl.o time.o \ tree234.o utils.o uxcons.o uxgen.o uxmisc.o uxnogtk.o \ uxnoise.o uxpoll.o uxstore.o uxutils.o version.o wcwidth.o \ $(ULDFLAGS) puttytel: be_misc.o be_nos_s.o callback.o cmdline.o conf.o config.o dialog.o \ errsock.o fromucs.o gtkcfg.o gtkcols.o gtkcomm.o gtkdlg.o \ gtkfont.o gtkmain.o gtkmisc.o gtkwin.o ldisc.o localenc.o \ logging.o macenc.o marshal.o memory.o mimeenc.o minibidi.o \ misc.o miscucs.o nocproxy.o nogss.o norand.o pinger.o \ proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sessprep.o \ settings.o slookup.o stripctrl.o supdup.o telnet.o \ terminal.o time.o timing.o toucs.o tree234.o utf8.o utils.o \ uxcfg.o uxfdsock.o uxmisc.o uxnet.o uxpeer.o uxpoll.o \ uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o uxsignal.o \ uxstore.o uxucs.o uxutils.o version.o wcwidth.o x11misc.o \ xenc.o xkeysym.o xpmpucfg.o xpmputty.o $(CC) -o $@ be_misc.o be_nos_s.o callback.o cmdline.o conf.o \ config.o dialog.o errsock.o fromucs.o gtkcfg.o gtkcols.o \ gtkcomm.o gtkdlg.o gtkfont.o gtkmain.o gtkmisc.o gtkwin.o \ ldisc.o localenc.o logging.o macenc.o marshal.o memory.o \ mimeenc.o minibidi.o misc.o miscucs.o nocproxy.o nogss.o \ norand.o pinger.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o \ sessprep.o settings.o slookup.o stripctrl.o supdup.o \ telnet.o terminal.o time.o timing.o toucs.o tree234.o utf8.o \ utils.o uxcfg.o uxfdsock.o uxmisc.o uxnet.o uxpeer.o \ uxpoll.o uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o \ uxsignal.o uxstore.o uxucs.o uxutils.o version.o wcwidth.o \ x11misc.o xenc.o xkeysym.o xpmpucfg.o xpmputty.o $(XLDFLAGS) testcrypt: ecc.o marshal.o memory.o millerrabin.o mpint.o mpunsafe.o \ pockle.o primecandidate.o smallprimes.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshdssg.o \ sshecc.o sshecdsag.o sshhmac.o sshmd5.o sshprime.o sshprng.o \ sshpubk.o sshrsa.o sshrsag.o sshsh256.o sshsh512.o sshsha.o \ sshsha3.o testcrypt.o tree234.o utils.o uxutils.o $(CC) -o $@ ecc.o marshal.o memory.o millerrabin.o mpint.o \ mpunsafe.o pockle.o primecandidate.o smallprimes.o sshaes.o \ ssharcf.o sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o \ sshccp.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \ sshdssg.o sshecc.o sshecdsag.o sshhmac.o sshmd5.o sshprime.o \ sshprng.o sshpubk.o sshrsa.o sshrsag.o sshsh256.o sshsh512.o \ sshsha.o sshsha3.o testcrypt.o tree234.o utils.o uxutils.o \ $(ULDFLAGS) testsc: ecc.o marshal.o memory.o mpint.o sshaes.o ssharcf.o sshargon2.o \ sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o sshcrc.o \ sshcrcda.o sshdes.o sshdh.o sshdss.o sshecc.o sshhmac.o \ sshmac.o sshmd5.o sshpubk.o sshrsa.o sshsh256.o sshsh512.o \ sshsha.o sshsha3.o testsc.o tree234.o utils.o uxutils.o \ wildcard.o $(CC) -o $@ ecc.o marshal.o memory.o mpint.o sshaes.o ssharcf.o \ sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o sshccp.o \ sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshecc.o \ sshhmac.o sshmac.o sshmd5.o sshpubk.o sshrsa.o sshsh256.o \ sshsh512.o sshsha.o sshsha3.o testsc.o tree234.o utils.o \ uxutils.o wildcard.o $(ULDFLAGS) testzlib: marshal.o memory.o sshzlib.o testzlib.o utils.o $(CC) -o $@ marshal.o memory.o sshzlib.o testzlib.o utils.o \ $(ULDFLAGS) uppity: be_misc.o be_none.o callback.o conf.o cproxy.o ecc.o errsock.o \ logging.o marshal.o memory.o millerrabin.o misc.o mpint.o \ mpunsafe.o nullplug.o pgssapi.o pockle.o portfwd.o \ primecandidate.o procnet.o proxy.o scpserver.o sesschan.o \ settings.o sftpcommon.o sftpserver.o smallprimes.o ssh1bpp.o \ ssh1censor.o ssh1connection.o ssh1connection-server.o \ ssh1login-server.o ssh2bpp.o ssh2bpp-bare.o ssh2censor.o \ ssh2connection.o ssh2connection-server.o ssh2kex-server.o \ ssh2transhk.o ssh2transport.o ssh2userauth-server.o sshaes.o \ ssharcf.o sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o \ sshccp.o sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \ sshdss.o sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshserver.o sshsh256.o sshsh512.o sshsha.o sshsha3.o \ sshutils.o sshverstring.o sshzlib.o stripctrl.o time.o \ timing.o tree234.o utils.o ux_x11.o uxagentsock.o \ uxcliloop.o uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnogtk.o \ uxnoise.o uxpeer.o uxpoll.o uxproxy.o uxpty.o uxsel.o \ uxserver.o uxsftpserver.o uxsignal.o uxstore.o uxutils.o \ version.o wcwidth.o wildcard.o x11fwd.o $(CC) -o $@ be_misc.o be_none.o callback.o conf.o cproxy.o ecc.o \ errsock.o logging.o marshal.o memory.o millerrabin.o misc.o \ mpint.o mpunsafe.o nullplug.o pgssapi.o pockle.o portfwd.o \ primecandidate.o procnet.o proxy.o scpserver.o sesschan.o \ settings.o sftpcommon.o sftpserver.o smallprimes.o ssh1bpp.o \ ssh1censor.o ssh1connection.o ssh1connection-server.o \ ssh1login-server.o ssh2bpp.o ssh2bpp-bare.o ssh2censor.o \ ssh2connection.o ssh2connection-server.o ssh2kex-server.o \ ssh2transhk.o ssh2transport.o ssh2userauth-server.o sshaes.o \ ssharcf.o sshargon2.o sshauxcrypt.o sshblake2.o sshblowf.o \ sshccp.o sshcommon.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \ sshdss.o sshecc.o sshgssc.o sshhmac.o sshmac.o sshmd5.o \ sshprime.o sshprng.o sshpubk.o sshrand.o sshrsa.o sshrsag.o \ sshserver.o sshsh256.o sshsh512.o sshsha.o sshsha3.o \ sshutils.o sshverstring.o sshzlib.o stripctrl.o time.o \ timing.o tree234.o utils.o ux_x11.o uxagentsock.o \ uxcliloop.o uxfdsock.o uxgss.o uxmisc.o uxnet.o uxnogtk.o \ uxnoise.o uxpeer.o uxpoll.o uxproxy.o uxpty.o uxsel.o \ uxserver.o uxsftpserver.o uxsignal.o uxstore.o uxutils.o \ version.o wcwidth.o wildcard.o x11fwd.o $(ULDFLAGS) agentf.o: ../agentf.c ../putty.h ../ssh.h ../pageant.h ../sshchan.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../agentf.c aqsync.o: ../aqsync.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../aqsync.c be_all_s.o: ../be_all_s.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all_s.c be_misc.o: ../be_misc.c ../putty.h ../network.h ../defs.h ../puttyps.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_misc.c be_none.o: ../be_none.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_none.c be_nos_s.o: ../be_nos_s.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nos_s.c be_ssh.o: ../be_ssh.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_ssh.c callback.o: ../callback.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../callback.c cgtest.o: ../cgtest.c ../cmdgen.c ../putty.h ../ssh.h ../sshkeygen.h \ ../mpint.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cgtest.c clicons.o: ../clicons.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../clicons.c cmdgen.o: ../cmdgen.c ../putty.h ../ssh.h ../sshkeygen.h ../mpint.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdgen.c cmdline.o: ../cmdline.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdline.c conf.o: ../conf.c ../tree234.h ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../conf.c config.o: ../config.c ../putty.h ../dialog.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../config.c console.o: ../console.c ../putty.h ../misc.h ../console.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../windows/winstuff.h ../unix/unix.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../console.c cproxy.o: ../cproxy.c ../putty.h ../ssh.h ../network.h ../proxy.h \ ../marshal.h ../defs.h ../puttyps.h ../misc.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cproxy.c dialog.o: ../dialog.c ../putty.h ../dialog.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../dialog.c ecc.o: ../ecc.c ../ssh.h ../mpint.h ../ecc.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ecc.c errsock.o: ../errsock.c ../tree234.h ../putty.h ../network.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../errsock.c fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/fromucs.c fuzzterm.o: ../fuzzterm.c ../putty.h ../dialog.h ../terminal.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../tree234.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../fuzzterm.c gtkapp.o: ../unix/gtkapp.c ../putty.h ../unix/gtkmisc.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkapp.c gtkask.o: ../unix/gtkask.c ../defs.h ../unix/gtkfont.h ../unix/gtkcompat.h \ ../unix/gtkmisc.h ../putty.h ../ssh.h ../misc.h ../puttyps.h \ ../network.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkask.c gtkcfg.o: ../unix/gtkcfg.c ../putty.h ../dialog.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcfg.c gtkcols.o: ../unix/gtkcols.c ../defs.h ../unix/gtkcompat.h ../unix/gtkcols.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcols.c gtkcomm.o: ../unix/gtkcomm.c ../putty.h ../terminal.h ../unix/gtkcompat.h \ ../unix/gtkfont.h ../unix/gtkmisc.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../tree234.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcomm.c gtkdlg.o: ../unix/gtkdlg.c ../putty.h ../unix/gtkcompat.h ../unix/gtkcols.h \ ../unix/gtkfont.h ../unix/gtkmisc.h ../unix/x11misc.h \ ../storage.h ../dialog.h ../tree234.h ../licence.h ../ssh.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkdlg.c gtkfont.o: ../unix/gtkfont.c ../putty.h ../unix/gtkfont.h \ ../unix/gtkcompat.h ../unix/gtkmisc.h ../tree234.h \ ../unix/x11misc.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkfont.c gtkmain.o: ../unix/gtkmain.c ../putty.h ../terminal.h ../unix/gtkcompat.h \ ../unix/gtkfont.h ../unix/gtkmisc.h ../unix/x11misc.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../tree234.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkmain.c gtkmisc.o: ../unix/gtkmisc.c ../putty.h ../unix/gtkcompat.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkmisc.c gtkwin.o: ../unix/gtkwin.c ../putty.h ../terminal.h ../unix/gtkcompat.h \ ../unix/gtkfont.h ../unix/gtkmisc.h ../unix/x11misc.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../tree234.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkwin.c import.o: ../import.c ../putty.h ../ssh.h ../mpint.h ../misc.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../import.c ldisc.o: ../ldisc.c ../putty.h ../terminal.h ../ldisc.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../tree234.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldisc.c localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/localenc.c logging.o: ../logging.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../logging.c macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/macenc.c mainchan.o: ../mainchan.c ../putty.h ../ssh.h ../sshppl.h ../sshchan.h \ ../sshsignals.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mainchan.c marshal.o: ../marshal.c ../marshal.h ../misc.h ../defs.h ../puttymem.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../marshal.c memory.o: ../memory.c ../defs.h ../puttymem.h ../misc.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../memory.c millerrabin.o: ../millerrabin.c ../ssh.h ../sshkeygen.h ../mpint.h \ ../mpunsafe.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../millerrabin.c mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/mimeenc.c minibidi.o: ../minibidi.c ../putty.h ../misc.h ../defs.h ../puttyps.h \ ../network.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../windows/winstuff.h ../unix/unix.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../minibidi.c misc.o: ../misc.c ../defs.h ../putty.h ../misc.h ../puttyps.h ../network.h \ ../marshal.h ../sshsignals.h ../puttymem.h \ ../windows/winstuff.h ../unix/unix.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../misc.c miscucs.o: ../miscucs.c ../putty.h ../misc.h ../defs.h ../puttyps.h \ ../network.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../windows/winstuff.h ../unix/unix.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../miscucs.c mpint.o: ../mpint.c ../defs.h ../misc.h ../puttymem.h ../mpint.h \ ../mpint_i.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mpint.c mpunsafe.o: ../mpunsafe.c ../defs.h ../misc.h ../puttymem.h ../mpint.h \ ../mpint_i.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mpunsafe.c nocmdline.o: ../nocmdline.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocmdline.c nocproxy.o: ../nocproxy.c ../putty.h ../network.h ../proxy.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocproxy.c nogss.o: ../nogss.c ../putty.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nogss.c norand.o: ../norand.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../norand.c noterm.o: ../noterm.c ../putty.h ../terminal.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../tree234.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../noterm.c notiming.o: ../notiming.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../notiming.c nullplug.o: ../nullplug.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nullplug.c osxlaunch.o: ../unix/osxlaunch.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/osxlaunch.c pageant.o: ../pageant.c ../putty.h ../mpint.h ../ssh.h ../sshcr.h \ ../pageant.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pageant.c pgssapi.o: ../pgssapi.c ../putty.h ../pgssapi.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pgssapi.c pinger.o: ../pinger.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pinger.c pockle.o: ../pockle.c ../ssh.h ../sshkeygen.h ../mpint.h ../mpunsafe.h \ ../tree234.h ../puttymem.h ../network.h ../misc.h \ ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pockle.c portfwd.o: ../portfwd.c ../putty.h ../ssh.h ../sshchan.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../portfwd.c primecandidate.o: ../primecandidate.c ../ssh.h ../mpint.h ../mpunsafe.h \ ../sshkeygen.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../primecandidate.c procnet.o: ../unix/procnet.c ../misc.h ../defs.h ../puttymem.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/procnet.c proxy.o: ../proxy.c ../putty.h ../network.h ../proxy.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../proxy.c pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.h ../storage.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pscp.c psftp.o: ../psftp.c ../putty.h ../psftp.h ../storage.h ../ssh.h ../sftp.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psftp.c psftpcommon.o: ../psftpcommon.c ../putty.h ../sftp.h ../psftp.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psftpcommon.c psocks.o: ../psocks.c ../putty.h ../misc.h ../ssh.h ../sshchan.h ../psocks.h \ ../defs.h ../puttyps.h ../network.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psocks.c raw.o: ../raw.c ../putty.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../raw.c rlogin.o: ../rlogin.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../rlogin.c sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcs.c sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcsdat.c scpserver.o: ../scpserver.c ../putty.h ../ssh.h ../sshcr.h ../sshchan.h \ ../sftp.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../scpserver.c sesschan.o: ../sesschan.c ../putty.h ../ssh.h ../sshchan.h ../sshserver.h \ ../sftp.h ../sshsignals.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sesschan.c sessprep.o: ../sessprep.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sessprep.c settings.o: ../settings.c ../putty.h ../storage.h ../sshgssc.h ../sshgss.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../pgssapi.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../settings.c sftp.o: ../sftp.c ../misc.h ../tree234.h ../sftp.h ../defs.h ../puttymem.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftp.c sftpcommon.o: ../sftpcommon.c ../misc.h ../sftp.h ../defs.h ../puttymem.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftpcommon.c sftpserver.o: ../sftpserver.c ../putty.h ../ssh.h ../sftp.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftpserver.c sizetip.o: ../windows/sizetip.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/sizetip.c slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \ ../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/slookup.c smallprimes.o: ../smallprimes.c ../ssh.h ../sshkeygen.h ../puttymem.h \ ../tree234.h ../network.h ../misc.h ../sshttymodes.h \ ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../smallprimes.c ssh.o: ../ssh.c ../putty.h ../pageant.h ../tree234.h ../storage.h \ ../marshal.h ../ssh.h ../sshcr.h ../sshbpp.h ../sshppl.h \ ../sshchan.h ../sshgssc.h ../sshgss.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../sshsignals.h ../puttymem.h \ ../sshttymodes.h ../pgssapi.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh.c ssh1bpp.o: ../ssh1bpp.c ../putty.h ../ssh.h ../sshbpp.h ../sshcr.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1bpp.c ssh1censor.o: ../ssh1censor.c ../putty.h ../ssh.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1censor.c ssh1connection.o: ../ssh1connection.c ../putty.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshchan.h ../sshcr.h ../ssh1connection.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1connection.c ssh1connection-client.o: ../ssh1connection-client.c ../putty.h ../ssh.h \ ../sshbpp.h ../sshppl.h ../sshchan.h ../sshcr.h \ ../ssh1connection.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1connection-client.c ssh1connection-server.o: ../ssh1connection-server.c ../putty.h ../ssh.h \ ../sshbpp.h ../sshppl.h ../sshchan.h ../sshcr.h \ ../ssh1connection.h ../sshserver.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1connection-server.c ssh1login.o: ../ssh1login.c ../putty.h ../ssh.h ../mpint.h ../sshbpp.h \ ../sshppl.h ../sshcr.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1login.c ssh1login-server.o: ../ssh1login-server.c ../putty.h ../mpint.h ../ssh.h \ ../sshbpp.h ../sshppl.h ../sshcr.h ../sshserver.h \ ../sshkeygen.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh1login-server.c ssh2bpp.o: ../ssh2bpp.c ../putty.h ../ssh.h ../sshbpp.h ../sshcr.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2bpp.c ssh2bpp-bare.o: ../ssh2bpp-bare.c ../putty.h ../ssh.h ../sshbpp.h ../sshcr.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2bpp-bare.c ssh2censor.o: ../ssh2censor.c ../putty.h ../ssh.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2censor.c ssh2connection.o: ../ssh2connection.c ../putty.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshchan.h ../sshcr.h ../ssh2connection.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2connection.c ssh2connection-client.o: ../ssh2connection-client.c ../putty.h ../ssh.h \ ../sshbpp.h ../sshppl.h ../sshchan.h ../sshcr.h \ ../ssh2connection.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2connection-client.c ssh2connection-server.o: ../ssh2connection-server.c ../putty.h ../ssh.h \ ../sshbpp.h ../sshppl.h ../sshchan.h ../sshcr.h \ ../ssh2connection.h ../sshserver.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2connection-server.c ssh2kex-client.o: ../ssh2kex-client.c ../putty.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshcr.h ../storage.h ../ssh2transport.h \ ../mpint.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../sshgssc.h ../sshgss.h \ ../windows/winstuff.h ../unix/unix.h ../pgssapi.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2kex-client.c ssh2kex-server.o: ../ssh2kex-server.c ../putty.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshcr.h ../sshserver.h ../sshkeygen.h \ ../storage.h ../ssh2transport.h ../mpint.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../sshgssc.h ../sshgss.h ../windows/winstuff.h \ ../unix/unix.h ../pgssapi.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2kex-server.c ssh2transhk.o: ../ssh2transhk.c ../putty.h ../ssh.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2transhk.c ssh2transport.o: ../ssh2transport.c ../putty.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshcr.h ../sshserver.h ../storage.h \ ../ssh2transport.h ../mpint.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h ../sshgssc.h \ ../sshgss.h ../windows/winstuff.h ../unix/unix.h \ ../pgssapi.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2transport.c ssh2userauth.o: ../ssh2userauth.c ../putty.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshcr.h ../sshgssc.h ../sshgss.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../pgssapi.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2userauth.c ssh2userauth-server.o: ../ssh2userauth-server.c ../putty.h ../ssh.h \ ../sshbpp.h ../sshppl.h ../sshcr.h ../sshserver.h \ ../sshgssc.h ../sshgss.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../pgssapi.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh2userauth-server.c sshaes.o: ../sshaes.c ../ssh.h ../mpint_i.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshaes.c ssharcf.o: ../ssharcf.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssharcf.c sshargon2.o: ../sshargon2.c ../putty.h ../ssh.h ../marshal.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshargon2.c sshauxcrypt.o: ../sshauxcrypt.c ../ssh.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshauxcrypt.c sshbcrypt.o: ../sshbcrypt.c ../ssh.h ../sshblowf.h ../puttymem.h \ ../tree234.h ../network.h ../misc.h ../sshttymodes.h \ ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshbcrypt.c sshblake2.o: ../sshblake2.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblake2.c sshblowf.o: ../sshblowf.c ../ssh.h ../sshblowf.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblowf.c sshccp.o: ../sshccp.c ../ssh.h ../mpint_i.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshccp.c sshcommon.o: ../sshcommon.c ../putty.h ../mpint.h ../ssh.h ../sshbpp.h \ ../sshppl.h ../sshchan.h ../sshttymodes.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcommon.c sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrc.c sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../defs.h ../puttymem.h \ ../marshal.h ../tree234.h ../network.h ../sshttymodes.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrcda.c sshdes.o: ../sshdes.c ../ssh.h ../mpint_i.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdes.c sshdh.o: ../sshdh.c ../ssh.h ../misc.h ../mpint.h ../puttymem.h ../tree234.h \ ../network.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdh.c sshdss.o: ../sshdss.c ../ssh.h ../mpint.h ../misc.h ../puttymem.h \ ../tree234.h ../network.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdss.c sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../sshkeygen.h ../mpint.h \ ../defs.h ../puttymem.h ../marshal.h ../tree234.h \ ../network.h ../sshttymodes.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdssg.c sshecc.o: ../sshecc.c ../ssh.h ../mpint.h ../ecc.h ../puttymem.h \ ../tree234.h ../network.h ../misc.h ../sshttymodes.h \ ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshecc.c sshecdsag.o: ../sshecdsag.c ../ssh.h ../sshkeygen.h ../mpint.h ../puttymem.h \ ../tree234.h ../network.h ../misc.h ../sshttymodes.h \ ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshecdsag.c sshgssc.o: ../sshgssc.c ../putty.h ../sshgssc.h ../misc.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../pgssapi.h ../sshgss.h ../puttymem.h ../windows/winstuff.h \ ../unix/unix.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshgssc.c sshhmac.o: ../sshhmac.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshhmac.c sshmac.o: ../sshmac.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmac.c sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmd5.c sshprime.o: ../sshprime.c ../ssh.h ../mpint.h ../mpunsafe.h ../sshkeygen.h \ ../puttymem.h ../tree234.h ../network.h ../misc.h \ ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprime.c sshprng.o: ../sshprng.c ../putty.h ../ssh.h ../mpint_i.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprng.c sshpubk.o: ../sshpubk.c ../putty.h ../mpint.h ../ssh.h ../misc.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshpubk.c sshrand.o: ../sshrand.c ../putty.h ../ssh.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrand.c sshrsa.o: ../sshrsa.c ../ssh.h ../mpint.h ../misc.h ../puttymem.h \ ../tree234.h ../network.h ../sshttymodes.h ../defs.h \ ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsa.c sshrsag.o: ../sshrsag.c ../ssh.h ../sshkeygen.h ../mpint.h ../puttymem.h \ ../tree234.h ../network.h ../misc.h ../sshttymodes.h \ ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsag.c sshserver.o: ../sshserver.c ../putty.h ../ssh.h ../sshbpp.h ../sshppl.h \ ../sshchan.h ../sshserver.h ../sshgssc.h ../sshgss.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../pgssapi.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshserver.c sshsh256.o: ../sshsh256.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh256.c sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh512.c sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha.c sshsha3.o: ../sshsha3.c ../ssh.h ../puttymem.h ../tree234.h ../network.h \ ../misc.h ../sshttymodes.h ../defs.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha3.c sshshare.o: ../sshshare.c ../putty.h ../tree234.h ../ssh.h ../sshcr.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshshare.c sshutils.o: ../sshutils.c ../putty.h ../ssh.h ../sshchan.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshutils.c sshverstring.o: ../sshverstring.c ../putty.h ../ssh.h ../sshbpp.h ../sshcr.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshverstring.c sshzlib.o: ../sshzlib.c ../defs.h ../ssh.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshzlib.c stripctrl.o: ../stripctrl.c ../putty.h ../terminal.h ../misc.h ../marshal.h \ ../defs.h ../puttyps.h ../network.h ../sshsignals.h \ ../tree234.h ../puttymem.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../stripctrl.c supdup.o: ../supdup.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../supdup.c telnet.o: ../telnet.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../telnet.c terminal.o: ../terminal.c ../putty.h ../terminal.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../tree234.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../terminal.c testcrypt.o: ../testcrypt.c ../defs.h ../ssh.h ../sshkeygen.h ../misc.h \ ../mpint.h ../ecc.h ../testcrypt.h ../puttymem.h \ ../tree234.h ../network.h ../sshttymodes.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testcrypt.c testsc.o: ../testsc.c ../defs.h ../putty.h ../ssh.h ../misc.h ../mpint.h \ ../ecc.h ../puttyps.h ../network.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testsc.c testzlib.o: ../testzlib.c ../defs.h ../ssh.h ../puttymem.h ../tree234.h \ ../network.h ../misc.h ../sshttymodes.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testzlib.c time.o: ../time.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../time.c timing.o: ../timing.c ../putty.h ../tree234.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../timing.c toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/toucs.c tree234.o: ../tree234.c ../defs.h ../tree234.h ../puttymem.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../tree234.c utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/utf8.c utils.o: ../utils.c ../defs.h ../misc.h ../ssh.h ../puttymem.h ../marshal.h \ ../tree234.h ../network.h ../sshttymodes.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../utils.c ux_x11.o: ../unix/ux_x11.c ../putty.h ../ssh.h ../network.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/ux_x11.c uxagentc.o: ../unix/uxagentc.c ../putty.h ../misc.h ../tree234.h \ ../puttymem.h ../defs.h ../puttyps.h ../network.h \ ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxagentc.c uxagentsock.o: ../unix/uxagentsock.c ../putty.h ../ssh.h ../misc.h \ ../pageant.h ../defs.h ../puttyps.h ../network.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxagentsock.c uxcfg.o: ../unix/uxcfg.c ../putty.h ../dialog.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcfg.c uxcliloop.o: ../unix/uxcliloop.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcliloop.c uxcons.o: ../unix/uxcons.c ../putty.h ../storage.h ../ssh.h ../console.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcons.c uxfdsock.o: ../unix/uxfdsock.c ../tree234.h ../putty.h ../network.h \ ../defs.h ../puttyps.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxfdsock.c uxgen.o: ../unix/uxgen.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgen.c uxgss.o: ../unix/uxgss.c ../putty.h ../pgssapi.h ../sshgss.h ../sshgssc.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgss.c uxmisc.o: ../unix/uxmisc.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxmisc.c uxnet.o: ../unix/uxnet.c ../putty.h ../network.h ../tree234.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnet.c uxnogtk.o: ../unix/uxnogtk.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnogtk.c uxnoise.o: ../unix/uxnoise.c ../putty.h ../ssh.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnoise.c uxpeer.o: ../unix/uxpeer.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpeer.c uxpgnt.o: ../unix/uxpgnt.c ../putty.h ../ssh.h ../misc.h ../pageant.h \ ../defs.h ../puttyps.h ../network.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpgnt.c uxplink.o: ../unix/uxplink.c ../putty.h ../ssh.h ../storage.h ../tree234.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxplink.c uxpoll.o: ../unix/uxpoll.c ../putty.h ../tree234.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpoll.c uxprint.o: ../unix/uxprint.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxprint.c uxproxy.o: ../unix/uxproxy.c ../tree234.h ../putty.h ../network.h ../proxy.h \ ../defs.h ../puttyps.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxproxy.c uxpsusan.o: ../unix/uxpsusan.c ../putty.h ../mpint.h ../ssh.h ../sshserver.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpsusan.c uxpterm.o: ../unix/uxpterm.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpterm.c uxpty.o: ../unix/uxpty.c ../putty.h ../ssh.h ../sshserver.h ../tree234.h \ ../sshttymodes.h ../sshsignals.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../puttymem.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpty.c uxputty.o: ../unix/uxputty.c ../putty.h ../ssh.h ../storage.h \ ../unix/gtkcompat.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxputty.c uxsel.o: ../unix/uxsel.c ../putty.h ../tree234.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsel.c uxser.o: ../unix/uxser.c ../putty.h ../tree234.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxser.c uxserver.o: ../unix/uxserver.c ../putty.h ../mpint.h ../ssh.h ../sshserver.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxserver.c uxsftp.o: ../unix/uxsftp.c ../putty.h ../ssh.h ../psftp.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftp.c uxsftpserver.o: ../unix/uxsftpserver.c ../putty.h ../ssh.h ../sshserver.h \ ../sftp.h ../tree234.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftpserver.c uxshare.o: ../unix/uxshare.c ../tree234.h ../putty.h ../network.h ../proxy.h \ ../ssh.h ../defs.h ../puttyps.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxshare.c uxsignal.o: ../unix/uxsignal.c ../defs.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsignal.c uxsocks.o: ../unix/uxsocks.c ../putty.h ../ssh.h ../psocks.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsocks.c uxstore.o: ../unix/uxstore.c ../putty.h ../storage.h ../tree234.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxstore.c uxucs.o: ../unix/uxucs.c ../putty.h ../charset/charset.h ../terminal.h \ ../misc.h ../defs.h ../puttyps.h ../network.h ../marshal.h \ ../sshsignals.h ../tree234.h ../puttymem.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxucs.c uxutils.o: ../unix/uxutils.c ../putty.h ../ssh.h ../unix/uxutils.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxutils.c version.o: ../version.c ../putty.h ../ssh.h ../empty.h ../version.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../version.c wcwidth.o: ../wcwidth.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wcwidth.c wildcard.o: ../wildcard.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wildcard.c wincapi.o: ../windows/wincapi.c ../putty.h ../ssh.h ../windows/wincapi.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincapi.c wincfg.o: ../windows/wincfg.c ../putty.h ../dialog.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincfg.c wincliloop.o: ../windows/wincliloop.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincliloop.c wincons.o: ../windows/wincons.c ../putty.h ../storage.h ../ssh.h \ ../console.h ../defs.h ../puttyps.h ../network.h ../misc.h \ ../marshal.h ../sshsignals.h ../puttymem.h ../tree234.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincons.c winctrls.o: ../windows/winctrls.c ../putty.h ../misc.h ../dialog.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../windows/winstuff.h ../unix/unix.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winctrls.c windefs.o: ../windows/windefs.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windefs.c windlg.o: ../windows/windlg.c ../putty.h ../ssh.h ../windows/win_res.h \ ../windows/winseat.h ../storage.h ../dialog.h ../licence.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windlg.c window.o: ../windows/window.c ../putty.h ../terminal.h ../storage.h \ ../windows/win_res.h ../windows/winsecur.h \ ../windows/winseat.h ../tree234.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/window.c wingss.o: ../windows/wingss.c ../putty.h ../pgssapi.h ../sshgss.h \ ../sshgssc.h ../misc.h ../defs.h ../puttyps.h ../network.h \ ../marshal.h ../sshsignals.h ../puttymem.h \ ../windows/winstuff.h ../unix/unix.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wingss.c winhandl.o: ../windows/winhandl.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhandl.c winhelp.o: ../windows/winhelp.c ../putty.h ../windows/win_res.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhelp.c winhsock.o: ../windows/winhsock.c ../tree234.h ../putty.h ../network.h \ ../defs.h ../puttyps.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhsock.c winjump.o: ../windows/winjump.c ../putty.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winjump.c winmisc.o: ../windows/winmisc.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winmisc.c winmiscs.o: ../windows/winmiscs.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winmiscs.c winnet.o: ../windows/winnet.c ../putty.h ../network.h ../tree234.h ../ssh.h \ ../defs.h ../puttyps.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnet.c winnohlp.o: ../windows/winnohlp.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnohlp.c winnoise.o: ../windows/winnoise.c ../putty.h ../ssh.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnoise.c winnojmp.o: ../windows/winnojmp.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnojmp.c winnpc.o: ../windows/winnpc.c ../tree234.h ../putty.h ../network.h \ ../proxy.h ../ssh.h ../windows/winsecur.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnpc.c winnps.o: ../windows/winnps.c ../tree234.h ../putty.h ../network.h \ ../proxy.h ../ssh.h ../windows/winsecur.h ../defs.h \ ../puttyps.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnps.c winpgen.o: ../windows/winpgen.c ../putty.h ../ssh.h ../sshkeygen.h \ ../licence.h ../windows/winsecur.h ../windows/puttygen-rc.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgen.c winpgnt.o: ../windows/winpgnt.c ../putty.h ../ssh.h ../misc.h ../tree234.h \ ../windows/winsecur.h ../windows/wincapi.h ../pageant.h \ ../licence.h ../windows/pageant-rc.h ../defs.h ../puttyps.h \ ../network.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgnt.c winpgntc.o: ../windows/winpgntc.c ../putty.h ../pageant.h \ ../windows/winsecur.h ../windows/wincapi.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgntc.c winplink.o: ../windows/winplink.c ../putty.h ../storage.h ../tree234.h \ ../windows/winsecur.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winplink.c winprint.o: ../windows/winprint.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winprint.c winproxy.o: ../windows/winproxy.c ../tree234.h ../putty.h ../network.h \ ../proxy.h ../defs.h ../puttyps.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winproxy.c winsecur.o: ../windows/winsecur.c ../putty.h ../windows/winsecur.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsecur.c winselcli.o: ../windows/winselcli.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winselcli.c winselgui.o: ../windows/winselgui.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winselgui.c winser.o: ../windows/winser.c ../putty.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../windows/winstuff.h \ ../unix/unix.h ../puttymem.h ../tree234.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winser.c winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../ssh.h \ ../windows/winsecur.h ../defs.h ../puttyps.h ../network.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../tree234.h ../sshttymodes.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsftp.c winshare.o: ../windows/winshare.c ../tree234.h ../putty.h ../network.h \ ../proxy.h ../ssh.h ../windows/wincapi.h \ ../windows/winsecur.h ../noshare.c ../defs.h ../puttyps.h \ ../misc.h ../marshal.h ../sshsignals.h ../puttymem.h \ ../sshttymodes.h ../windows/winstuff.h ../unix/unix.h \ ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winshare.c winsocks.o: ../windows/winsocks.c ../putty.h ../ssh.h ../psocks.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsocks.c winstore.o: ../windows/winstore.c ../putty.h ../storage.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winstore.c wintime.o: ../windows/wintime.c ../putty.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../windows/winstuff.h ../unix/unix.h ../puttymem.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wintime.c winucs.o: ../windows/winucs.c ../putty.h ../terminal.h ../misc.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../tree234.h ../puttymem.h ../windows/winstuff.h \ ../unix/unix.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winucs.c winutils.o: ../windows/winutils.c ../putty.h ../misc.h ../defs.h \ ../puttyps.h ../network.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../windows/winstuff.h ../unix/unix.h \ ../tree234.h ../windows/winhelp.h ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winutils.c winx11.o: ../windows/winx11.c ../putty.h ../ssh.h ../defs.h ../puttyps.h \ ../network.h ../misc.h ../marshal.h ../sshsignals.h \ ../puttymem.h ../tree234.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winx11.c x11fwd.o: ../x11fwd.c ../putty.h ../ssh.h ../sshchan.h ../tree234.h \ ../defs.h ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../puttymem.h ../sshttymodes.h \ ../windows/winstuff.h ../unix/unix.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../x11fwd.c x11misc.o: ../unix/x11misc.c ../putty.h ../unix/x11misc.h ../defs.h \ ../puttyps.h ../network.h ../misc.h ../marshal.h \ ../sshsignals.h ../windows/winstuff.h ../unix/unix.h \ ../puttymem.h ../tree234.h ../windows/winhelp.h \ ../charset/charset.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/x11misc.c xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/xenc.c xkeysym.o: ../unix/xkeysym.c ../misc.h ../defs.h ../puttymem.h ../marshal.h $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xkeysym.c xpmptcfg.o: ../unix/xpmptcfg.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmptcfg.c xpmpterm.o: ../unix/xpmpterm.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpterm.c xpmpucfg.o: ../unix/xpmpucfg.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpucfg.c xpmputty.o: ../unix/xpmputty.c $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmputty.c install: mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir) $(INSTALL_PROGRAM) -m 755 pageant $(DESTDIR)$(bindir)/pageant $(INSTALL_PROGRAM) -m 755 plink $(DESTDIR)$(bindir)/plink $(INSTALL_PROGRAM) -m 755 pscp $(DESTDIR)$(bindir)/pscp $(INSTALL_PROGRAM) -m 755 psftp $(DESTDIR)$(bindir)/psftp $(INSTALL_PROGRAM) -m 755 pterm $(DESTDIR)$(bindir)/pterm if test -n "$(UTMP_GROUP)"; then \ chgrp $(UTMP_GROUP) $(DESTDIR)$(bindir)/pterm && \ chmod 2755 $(DESTDIR)$(bindir)/pterm; \ elif test -n "$(UTMP_USER)"; then \ chown $(UTMP_USER) $(DESTDIR)$(bindir)/pterm && \ chmod 4755 $(DESTDIR)$(bindir)/pterm; \ fi $(INSTALL_PROGRAM) -m 755 putty $(DESTDIR)$(bindir)/putty $(INSTALL_PROGRAM) -m 755 puttygen $(DESTDIR)$(bindir)/puttygen $(INSTALL_PROGRAM) -m 755 puttytel $(DESTDIR)$(bindir)/puttytel $(INSTALL_DATA) -m 644 ../doc/pageant.1 $(DESTDIR)$(man1dir)/pageant.1 $(INSTALL_DATA) -m 644 ../doc/plink.1 $(DESTDIR)$(man1dir)/plink.1 $(INSTALL_DATA) -m 644 ../doc/pscp.1 $(DESTDIR)$(man1dir)/pscp.1 $(INSTALL_DATA) -m 644 ../doc/psftp.1 $(DESTDIR)$(man1dir)/psftp.1 $(INSTALL_DATA) -m 644 ../doc/pterm.1 $(DESTDIR)$(man1dir)/pterm.1 $(INSTALL_DATA) -m 644 ../doc/putty.1 $(DESTDIR)$(man1dir)/putty.1 $(INSTALL_DATA) -m 644 ../doc/puttygen.1 $(DESTDIR)$(man1dir)/puttygen.1 $(INSTALL_DATA) -m 644 ../doc/puttytel.1 $(DESTDIR)$(man1dir)/puttytel.1 install-strip: $(MAKE) install INSTALL_PROGRAM="$(INSTALL_PROGRAM) -s" clean: rm -f *.o cgtest fuzzterm osxlaunch pageant plink pscp psftp psocks psusan pterm ptermapp putty puttyapp puttygen puttytel testcrypt testsc testzlib uppity FORCE: