mirror of
https://github.com/chemhack/putty.git
synced 2026-01-12 15:45:52 +00:00
815 lines
40 KiB
Makefile
815 lines
40 KiB
Makefile
# Makefile for putty under Borland C.
|
|
#
|
|
# 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:
|
|
#
|
|
# - VER="-DSNAPSHOT=1999-01-25 -DSVN_REV=1234"
|
|
# Generates executables whose About box report them as being a
|
|
# development snapshot. SVN_REV is a Subversion revision number.
|
|
#
|
|
# - VER=-DRELEASE=0.43
|
|
# Generates executables whose About box report them as being a
|
|
# release version.
|
|
#
|
|
# - COMPAT=-DAUTO_WINSOCK (Windows only)
|
|
# Causes PuTTY to assume that <windows.h> includes its own WinSock
|
|
# header file, so that it won't try to include <winsock.h>.
|
|
#
|
|
# - COMPAT=-DWINSOCK_TWO (Windows only)
|
|
# Causes the PuTTY utilities to include <winsock2.h> instead of
|
|
# <winsock.h>, except Plink which _needs_ WinSock 2 so it already
|
|
# does this.
|
|
#
|
|
# - COMPAT=-DNO_SECURITY (Windows only)
|
|
# Disables Pageant's use of <aclapi.h>, which is not available
|
|
# with some development environments (such as older versions of
|
|
# the Cygwin/mingw GNU toolchain). This means that 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).
|
|
#
|
|
# - COMPAT=-DNO_MULTIMON (Windows only)
|
|
# Disables PuTTY's use of <multimon.h>, 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.
|
|
#
|
|
# Note that this definition is always enabled in the Cygwin
|
|
# build, since at the time of writing this <multimon.h> is
|
|
# known not to be available in Cygwin.
|
|
#
|
|
# - COMPAT=-DNO_HTMLHELP (Windows only)
|
|
# Disables PuTTY's use of <htmlhelp.h>, which is not available
|
|
# with some development environments. The resulting binary
|
|
# will only look for an old-style WinHelp file (.HLP/.CNT), and
|
|
# will ignore any .CHM file.
|
|
#
|
|
# Note that this definition is always enabled in the Cygwin
|
|
# build, since at the time of writing this <htmlhelp.h> is
|
|
# known not to be available in Cygwin (although you can use
|
|
# the htmlhelp.h 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.
|
|
#
|
|
# - RCFL=-DASCIICTLS (Windows only)
|
|
# Uses ASCII rather than Unicode to specify the tab control in
|
|
# the resource file. Probably most useful when compiling with
|
|
# Cygnus/mingw32, whose resource compiler may have less of a
|
|
# problem with it.
|
|
#
|
|
# - XFLAGS=-DTELNET_DEFAULT
|
|
# Causes PuTTY to default to the Telnet protocol (in the absence
|
|
# of Default Settings and so on to the contrary). Normally PuTTY
|
|
# will default to SSH.
|
|
#
|
|
# - 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.
|
|
#
|
|
|
|
# If you rename this file to `Makefile', you should change this line,
|
|
# so that the .rsp files still depend on the correct makefile.
|
|
MAKEFILE = Makefile.bor
|
|
|
|
# C compilation flags
|
|
CFLAGS = -D_WINDOWS -DWINVER=0x0500
|
|
# Resource compilation flags
|
|
RCFLAGS = -DNO_WINRESRC_H -DWIN32 -D_WIN32 -DWINVER=0x0401
|
|
|
|
# Get include directory for resource compiler
|
|
!if !$d(BCB)
|
|
BCB = $(MAKEDIR)\..
|
|
!endif
|
|
|
|
# Borland doesn't support +=. This probably shouldn't work, but seems to.
|
|
RCFLAGS = $(RCFLAGS) $(VER)
|
|
|
|
.c.obj:
|
|
bcc32 -w-aus -w-ccc -w-par -w-pia $(COMPAT) $(CFLAGS) $(XFLAGS) \
|
|
-I..\./ -I..\charset/ -I..\windows/ -I..\unix/ -I..\macosx/ \
|
|
/c $*.c
|
|
.rc.res:
|
|
brcc32 $(RCFL) -i $(BCB)\include -r $(RCFLAGS) $*.rc
|
|
|
|
all: pageant.exe plink.exe pscp.exe psftp.exe putty.exe puttygen.exe \
|
|
puttytel.exe
|
|
|
|
pageant.exe: conf.obj misc.obj pageant.res sshaes.obj sshbn.obj sshdes.obj \
|
|
sshdss.obj sshmd5.obj sshpubk.obj sshrsa.obj sshsh256.obj \
|
|
sshsh512.obj sshsha.obj tree234.obj version.obj winhelp.obj \
|
|
winmisc.obj winpgnt.obj winpgntc.obj winutils.obj \
|
|
pageant.rsp
|
|
ilink32 -aa -Gn -L$(BCB)\lib @pageant.rsp
|
|
|
|
plink.exe: be_all_s.obj cmdline.obj conf.obj cproxy.obj ldisc.obj \
|
|
logging.obj misc.obj pgssapi.obj pinger.obj plink.res \
|
|
portfwd.obj proxy.obj raw.obj rlogin.obj settings.obj \
|
|
ssh.obj sshaes.obj ssharcf.obj sshblowf.obj sshbn.obj \
|
|
sshcrc.obj sshcrcda.obj sshdes.obj sshdh.obj sshdss.obj \
|
|
sshgssc.obj sshmd5.obj sshpubk.obj sshrand.obj sshrsa.obj \
|
|
sshsh256.obj sshsh512.obj sshsha.obj sshzlib.obj telnet.obj \
|
|
timing.obj tree234.obj version.obj wildcard.obj wincons.obj \
|
|
windefs.obj wingss.obj winhandl.obj winmisc.obj winnet.obj \
|
|
winnoise.obj winnojmp.obj winpgntc.obj winplink.obj \
|
|
winproxy.obj winser.obj winstore.obj wintime.obj winx11.obj \
|
|
x11fwd.obj plink.rsp
|
|
ilink32 -ap -Gn -L$(BCB)\lib @plink.rsp
|
|
|
|
pscp.exe: be_ssh.obj cmdline.obj conf.obj cproxy.obj int64.obj logging.obj \
|
|
misc.obj pgssapi.obj pinger.obj portfwd.obj proxy.obj \
|
|
pscp.obj pscp.res settings.obj sftp.obj ssh.obj sshaes.obj \
|
|
ssharcf.obj sshblowf.obj sshbn.obj sshcrc.obj sshcrcda.obj \
|
|
sshdes.obj sshdh.obj sshdss.obj sshgssc.obj sshmd5.obj \
|
|
sshpubk.obj sshrand.obj sshrsa.obj sshsh256.obj sshsh512.obj \
|
|
sshsha.obj sshzlib.obj timing.obj tree234.obj version.obj \
|
|
wildcard.obj wincons.obj windefs.obj wingss.obj winhandl.obj \
|
|
winmisc.obj winnet.obj winnoise.obj winnojmp.obj \
|
|
winpgntc.obj winproxy.obj winsftp.obj winstore.obj \
|
|
wintime.obj x11fwd.obj pscp.rsp
|
|
ilink32 -ap -Gn -L$(BCB)\lib @pscp.rsp
|
|
|
|
psftp.exe: be_ssh.obj cmdline.obj conf.obj cproxy.obj int64.obj logging.obj \
|
|
misc.obj pgssapi.obj pinger.obj portfwd.obj proxy.obj \
|
|
psftp.obj psftp.res settings.obj sftp.obj ssh.obj sshaes.obj \
|
|
ssharcf.obj sshblowf.obj sshbn.obj sshcrc.obj sshcrcda.obj \
|
|
sshdes.obj sshdh.obj sshdss.obj sshgssc.obj sshmd5.obj \
|
|
sshpubk.obj sshrand.obj sshrsa.obj sshsh256.obj sshsh512.obj \
|
|
sshsha.obj sshzlib.obj timing.obj tree234.obj version.obj \
|
|
wildcard.obj wincons.obj windefs.obj wingss.obj winhandl.obj \
|
|
winmisc.obj winnet.obj winnoise.obj winnojmp.obj \
|
|
winpgntc.obj winproxy.obj winsftp.obj winstore.obj \
|
|
wintime.obj x11fwd.obj psftp.rsp
|
|
ilink32 -ap -Gn -L$(BCB)\lib @psftp.rsp
|
|
|
|
putty.exe: be_all_s.obj cmdline.obj conf.obj config.obj cproxy.obj \
|
|
dialog.obj ldisc.obj ldiscucs.obj logging.obj minibidi.obj \
|
|
misc.obj pgssapi.obj pinger.obj portfwd.obj proxy.obj \
|
|
putty.res raw.obj rlogin.obj sercfg.obj settings.obj \
|
|
sizetip.obj ssh.obj sshaes.obj ssharcf.obj sshblowf.obj \
|
|
sshbn.obj sshcrc.obj sshcrcda.obj sshdes.obj sshdh.obj \
|
|
sshdss.obj sshgssc.obj sshmd5.obj sshpubk.obj sshrand.obj \
|
|
sshrsa.obj sshsh256.obj sshsh512.obj sshsha.obj sshzlib.obj \
|
|
telnet.obj terminal.obj timing.obj tree234.obj version.obj \
|
|
wcwidth.obj wildcard.obj wincfg.obj winctrls.obj windefs.obj \
|
|
windlg.obj window.obj wingss.obj winhandl.obj winhelp.obj \
|
|
winjump.obj winmisc.obj winnet.obj winnoise.obj winpgntc.obj \
|
|
winprint.obj winproxy.obj winser.obj winstore.obj \
|
|
wintime.obj winucs.obj winutils.obj winx11.obj x11fwd.obj \
|
|
putty.rsp
|
|
ilink32 -aa -Gn -L$(BCB)\lib @putty.rsp
|
|
|
|
puttygen.exe: conf.obj import.obj misc.obj notiming.obj puttygen.res \
|
|
sshaes.obj sshbn.obj sshdes.obj sshdss.obj sshdssg.obj \
|
|
sshmd5.obj sshprime.obj sshpubk.obj sshrand.obj sshrsa.obj \
|
|
sshrsag.obj sshsh256.obj sshsh512.obj sshsha.obj tree234.obj \
|
|
version.obj winctrls.obj winhelp.obj winmisc.obj \
|
|
winnoise.obj winnojmp.obj winpgen.obj winstore.obj \
|
|
wintime.obj winutils.obj puttygen.rsp
|
|
ilink32 -aa -Gn -L$(BCB)\lib @puttygen.rsp
|
|
|
|
puttytel.exe: be_nos_s.obj cmdline.obj conf.obj config.obj dialog.obj \
|
|
ldisc.obj ldiscucs.obj logging.obj minibidi.obj misc.obj \
|
|
nocproxy.obj nogss.obj pinger.obj proxy.obj puttytel.res \
|
|
raw.obj rlogin.obj sercfg.obj settings.obj sizetip.obj \
|
|
telnet.obj terminal.obj timing.obj tree234.obj version.obj \
|
|
wcwidth.obj wincfg.obj winctrls.obj windefs.obj windlg.obj \
|
|
window.obj winhandl.obj winhelp.obj winjump.obj winmisc.obj \
|
|
winnet.obj winprint.obj winproxy.obj winser.obj winstore.obj \
|
|
wintime.obj winucs.obj winutils.obj puttytel.rsp
|
|
ilink32 -aa -Gn -L$(BCB)\lib @puttytel.rsp
|
|
|
|
pageant.rsp: $(MAKEFILE)
|
|
echo c0w32 + > pageant.rsp
|
|
echo conf.obj misc.obj sshaes.obj sshbn.obj sshdes.obj + >> pageant.rsp
|
|
echo sshdss.obj sshmd5.obj sshpubk.obj sshrsa.obj + >> pageant.rsp
|
|
echo sshsh256.obj sshsh512.obj sshsha.obj tree234.obj + >> pageant.rsp
|
|
echo version.obj winhelp.obj winmisc.obj winpgnt.obj + >> pageant.rsp
|
|
echo winpgntc.obj winutils.obj >> pageant.rsp
|
|
echo pageant.exe >> pageant.rsp
|
|
echo nul,cw32 import32 ole32, >> pageant.rsp
|
|
echo pageant.res >> pageant.rsp
|
|
|
|
plink.rsp: $(MAKEFILE)
|
|
echo c0x32 + > plink.rsp
|
|
echo be_all_s.obj cmdline.obj conf.obj cproxy.obj + >> plink.rsp
|
|
echo ldisc.obj logging.obj misc.obj pgssapi.obj + >> plink.rsp
|
|
echo pinger.obj portfwd.obj proxy.obj raw.obj + >> plink.rsp
|
|
echo rlogin.obj settings.obj ssh.obj sshaes.obj + >> plink.rsp
|
|
echo ssharcf.obj sshblowf.obj sshbn.obj sshcrc.obj + >> plink.rsp
|
|
echo sshcrcda.obj sshdes.obj sshdh.obj sshdss.obj + >> plink.rsp
|
|
echo sshgssc.obj sshmd5.obj sshpubk.obj sshrand.obj + >> plink.rsp
|
|
echo sshrsa.obj sshsh256.obj sshsh512.obj sshsha.obj + >> plink.rsp
|
|
echo sshzlib.obj telnet.obj timing.obj tree234.obj + >> plink.rsp
|
|
echo version.obj wildcard.obj wincons.obj windefs.obj + >> plink.rsp
|
|
echo wingss.obj winhandl.obj winmisc.obj winnet.obj + >> plink.rsp
|
|
echo winnoise.obj winnojmp.obj winpgntc.obj + >> plink.rsp
|
|
echo winplink.obj winproxy.obj winser.obj winstore.obj + >> plink.rsp
|
|
echo wintime.obj winx11.obj x11fwd.obj >> plink.rsp
|
|
echo plink.exe >> plink.rsp
|
|
echo nul,cw32 import32 ole32, >> plink.rsp
|
|
echo plink.res >> plink.rsp
|
|
|
|
pscp.rsp: $(MAKEFILE)
|
|
echo c0x32 + > pscp.rsp
|
|
echo be_ssh.obj cmdline.obj conf.obj cproxy.obj + >> pscp.rsp
|
|
echo int64.obj logging.obj misc.obj pgssapi.obj + >> pscp.rsp
|
|
echo pinger.obj portfwd.obj proxy.obj pscp.obj + >> pscp.rsp
|
|
echo settings.obj sftp.obj ssh.obj sshaes.obj + >> pscp.rsp
|
|
echo ssharcf.obj sshblowf.obj sshbn.obj sshcrc.obj + >> pscp.rsp
|
|
echo sshcrcda.obj sshdes.obj sshdh.obj sshdss.obj + >> pscp.rsp
|
|
echo sshgssc.obj sshmd5.obj sshpubk.obj sshrand.obj + >> pscp.rsp
|
|
echo sshrsa.obj sshsh256.obj sshsh512.obj sshsha.obj + >> pscp.rsp
|
|
echo sshzlib.obj timing.obj tree234.obj version.obj + >> pscp.rsp
|
|
echo wildcard.obj wincons.obj windefs.obj wingss.obj + >> pscp.rsp
|
|
echo winhandl.obj winmisc.obj winnet.obj winnoise.obj + >> pscp.rsp
|
|
echo winnojmp.obj winpgntc.obj winproxy.obj + >> pscp.rsp
|
|
echo winsftp.obj winstore.obj wintime.obj x11fwd.obj >> pscp.rsp
|
|
echo pscp.exe >> pscp.rsp
|
|
echo nul,cw32 import32 ole32, >> pscp.rsp
|
|
echo pscp.res >> pscp.rsp
|
|
|
|
psftp.rsp: $(MAKEFILE)
|
|
echo c0x32 + > psftp.rsp
|
|
echo be_ssh.obj cmdline.obj conf.obj cproxy.obj + >> psftp.rsp
|
|
echo int64.obj logging.obj misc.obj pgssapi.obj + >> psftp.rsp
|
|
echo pinger.obj portfwd.obj proxy.obj psftp.obj + >> psftp.rsp
|
|
echo settings.obj sftp.obj ssh.obj sshaes.obj + >> psftp.rsp
|
|
echo ssharcf.obj sshblowf.obj sshbn.obj sshcrc.obj + >> psftp.rsp
|
|
echo sshcrcda.obj sshdes.obj sshdh.obj sshdss.obj + >> psftp.rsp
|
|
echo sshgssc.obj sshmd5.obj sshpubk.obj sshrand.obj + >> psftp.rsp
|
|
echo sshrsa.obj sshsh256.obj sshsh512.obj sshsha.obj + >> psftp.rsp
|
|
echo sshzlib.obj timing.obj tree234.obj version.obj + >> psftp.rsp
|
|
echo wildcard.obj wincons.obj windefs.obj wingss.obj + >> psftp.rsp
|
|
echo winhandl.obj winmisc.obj winnet.obj winnoise.obj + >> psftp.rsp
|
|
echo winnojmp.obj winpgntc.obj winproxy.obj + >> psftp.rsp
|
|
echo winsftp.obj winstore.obj wintime.obj x11fwd.obj >> psftp.rsp
|
|
echo psftp.exe >> psftp.rsp
|
|
echo nul,cw32 import32 ole32, >> psftp.rsp
|
|
echo psftp.res >> psftp.rsp
|
|
|
|
putty.rsp: $(MAKEFILE)
|
|
echo c0w32 + > putty.rsp
|
|
echo be_all_s.obj cmdline.obj conf.obj config.obj + >> putty.rsp
|
|
echo cproxy.obj dialog.obj ldisc.obj ldiscucs.obj + >> putty.rsp
|
|
echo logging.obj minibidi.obj misc.obj pgssapi.obj + >> putty.rsp
|
|
echo pinger.obj portfwd.obj proxy.obj raw.obj + >> putty.rsp
|
|
echo rlogin.obj sercfg.obj settings.obj sizetip.obj + >> putty.rsp
|
|
echo ssh.obj sshaes.obj ssharcf.obj sshblowf.obj + >> putty.rsp
|
|
echo sshbn.obj sshcrc.obj sshcrcda.obj sshdes.obj + >> putty.rsp
|
|
echo sshdh.obj sshdss.obj sshgssc.obj sshmd5.obj + >> putty.rsp
|
|
echo sshpubk.obj sshrand.obj sshrsa.obj sshsh256.obj + >> putty.rsp
|
|
echo sshsh512.obj sshsha.obj sshzlib.obj telnet.obj + >> putty.rsp
|
|
echo terminal.obj timing.obj tree234.obj version.obj + >> putty.rsp
|
|
echo wcwidth.obj wildcard.obj wincfg.obj winctrls.obj + >> putty.rsp
|
|
echo windefs.obj windlg.obj window.obj wingss.obj + >> putty.rsp
|
|
echo winhandl.obj winhelp.obj winjump.obj winmisc.obj + >> putty.rsp
|
|
echo winnet.obj winnoise.obj winpgntc.obj winprint.obj + >> putty.rsp
|
|
echo winproxy.obj winser.obj winstore.obj wintime.obj + >> putty.rsp
|
|
echo winucs.obj winutils.obj winx11.obj x11fwd.obj >> putty.rsp
|
|
echo putty.exe >> putty.rsp
|
|
echo nul,cw32 import32 ole32, >> putty.rsp
|
|
echo putty.res >> putty.rsp
|
|
|
|
puttygen.rsp: $(MAKEFILE)
|
|
echo c0w32 + > puttygen.rsp
|
|
echo conf.obj import.obj misc.obj notiming.obj + >> puttygen.rsp
|
|
echo sshaes.obj sshbn.obj sshdes.obj sshdss.obj + >> puttygen.rsp
|
|
echo sshdssg.obj sshmd5.obj sshprime.obj sshpubk.obj + >> puttygen.rsp
|
|
echo sshrand.obj sshrsa.obj sshrsag.obj sshsh256.obj + >> puttygen.rsp
|
|
echo sshsh512.obj sshsha.obj tree234.obj version.obj + >> puttygen.rsp
|
|
echo winctrls.obj winhelp.obj winmisc.obj winnoise.obj + >> puttygen.rsp
|
|
echo winnojmp.obj winpgen.obj winstore.obj wintime.obj + >> puttygen.rsp
|
|
echo winutils.obj >> puttygen.rsp
|
|
echo puttygen.exe >> puttygen.rsp
|
|
echo nul,cw32 import32 ole32, >> puttygen.rsp
|
|
echo puttygen.res >> puttygen.rsp
|
|
|
|
puttytel.rsp: $(MAKEFILE)
|
|
echo c0w32 + > puttytel.rsp
|
|
echo be_nos_s.obj cmdline.obj conf.obj config.obj + >> puttytel.rsp
|
|
echo dialog.obj ldisc.obj ldiscucs.obj logging.obj + >> puttytel.rsp
|
|
echo minibidi.obj misc.obj nocproxy.obj nogss.obj + >> puttytel.rsp
|
|
echo pinger.obj proxy.obj raw.obj rlogin.obj + >> puttytel.rsp
|
|
echo sercfg.obj settings.obj sizetip.obj telnet.obj + >> puttytel.rsp
|
|
echo terminal.obj timing.obj tree234.obj version.obj + >> puttytel.rsp
|
|
echo wcwidth.obj wincfg.obj winctrls.obj windefs.obj + >> puttytel.rsp
|
|
echo windlg.obj window.obj winhandl.obj winhelp.obj + >> puttytel.rsp
|
|
echo winjump.obj winmisc.obj winnet.obj winprint.obj + >> puttytel.rsp
|
|
echo winproxy.obj winser.obj winstore.obj wintime.obj + >> puttytel.rsp
|
|
echo winucs.obj winutils.obj >> puttytel.rsp
|
|
echo puttytel.exe >> puttytel.rsp
|
|
echo nul,cw32 import32 ole32, >> puttytel.rsp
|
|
echo puttytel.res >> puttytel.rsp
|
|
|
|
be_all_s.obj: ..\be_all_s.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
be_none.obj: ..\be_none.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
be_nos_s.obj: ..\be_nos_s.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
be_ssh.obj: ..\be_ssh.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
cmdgen.obj: ..\cmdgen.c ..\putty.h ..\ssh.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
cmdline.obj: ..\cmdline.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
conf.obj: ..\conf.c ..\tree234.h ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
config.obj: ..\config.c ..\putty.h ..\dialog.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
cproxy.obj: ..\cproxy.c ..\putty.h ..\ssh.h ..\network.h ..\proxy.h \
|
|
..\puttyps.h ..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
dialog.obj: ..\dialog.c ..\putty.h ..\dialog.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
fromucs.obj: ..\charset\fromucs.c ..\charset\charset.h ..\charset\internal.h
|
|
gtkcfg.obj: ..\unix\gtkcfg.c ..\putty.h ..\dialog.h ..\storage.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
gtkcols.obj: ..\unix\gtkcols.c ..\unix\gtkcols.h
|
|
gtkdlg.obj: ..\unix\gtkdlg.c ..\unix\gtkcols.h ..\unix\gtkfont.h ..\putty.h \
|
|
..\storage.h ..\dialog.h ..\tree234.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
gtkfont.obj: ..\unix\gtkfont.c ..\putty.h ..\unix\gtkfont.h ..\tree234.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
gtkwin.obj: ..\unix\gtkwin.c ..\putty.h ..\terminal.h ..\unix\gtkfont.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\tree234.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\windows\winhelp.h ..\charset\charset.h
|
|
import.obj: ..\import.c ..\putty.h ..\ssh.h ..\misc.h ..\puttyps.h \
|
|
..\network.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
int64.obj: ..\int64.c ..\int64.h
|
|
ldisc.obj: ..\ldisc.c ..\putty.h ..\terminal.h ..\ldisc.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\tree234.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
ldiscucs.obj: ..\ldiscucs.c ..\putty.h ..\terminal.h ..\ldisc.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\tree234.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
localenc.obj: ..\charset\localenc.c ..\charset\charset.h \
|
|
..\charset\internal.h
|
|
logging.obj: ..\logging.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
macenc.obj: ..\charset\macenc.c ..\charset\charset.h ..\charset\internal.h
|
|
mimeenc.obj: ..\charset\mimeenc.c ..\charset\charset.h ..\charset\internal.h
|
|
minibidi.obj: ..\minibidi.c ..\misc.h ..\puttymem.h
|
|
misc.obj: ..\misc.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
nocproxy.obj: ..\nocproxy.c ..\putty.h ..\network.h ..\proxy.h ..\puttyps.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
nogss.obj: ..\nogss.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
notiming.obj: ..\notiming.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
osxctrls.obj: ..\macosx\osxctrls.m ..\putty.h ..\dialog.h \
|
|
..\macosx\osxclass.h ..\tree234.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
osxdlg.obj: ..\macosx\osxdlg.m ..\putty.h ..\storage.h ..\dialog.h \
|
|
..\macosx\osxclass.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
osxmain.obj: ..\macosx\osxmain.m ..\putty.h ..\macosx\osxclass.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
osxsel.obj: ..\macosx\osxsel.m ..\putty.h ..\macosx\osxclass.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
osxwin.obj: ..\macosx\osxwin.m ..\putty.h ..\terminal.h ..\macosx\osxclass.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\tree234.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\windows\winhelp.h ..\charset\charset.h
|
|
pageant.res: FORCE
|
|
pgssapi.obj: ..\pgssapi.c ..\putty.h ..\pgssapi.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
pinger.obj: ..\pinger.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
plink.res: FORCE
|
|
portfwd.obj: ..\portfwd.c ..\putty.h ..\ssh.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
proxy.obj: ..\proxy.c ..\putty.h ..\network.h ..\proxy.h ..\puttyps.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
pscp.obj: ..\pscp.c ..\putty.h ..\psftp.h ..\ssh.h ..\sftp.h ..\storage.h \
|
|
..\int64.h ..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h \
|
|
..\tree234.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\windows\winhelp.h ..\charset\charset.h
|
|
pscp.res: FORCE
|
|
psftp.obj: ..\psftp.c ..\putty.h ..\psftp.h ..\storage.h ..\ssh.h ..\sftp.h \
|
|
..\int64.h ..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h \
|
|
..\tree234.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\windows\winhelp.h ..\charset\charset.h
|
|
psftp.res: FORCE
|
|
putty.res: FORCE
|
|
puttygen.res: FORCE
|
|
puttytel.res: FORCE
|
|
raw.obj: ..\raw.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
rlogin.obj: ..\rlogin.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
sbcs.obj: ..\charset\sbcs.c ..\charset\charset.h ..\charset\internal.h
|
|
sbcsdat.obj: ..\charset\sbcsdat.c ..\charset\charset.h ..\charset\internal.h
|
|
sercfg.obj: ..\sercfg.c ..\putty.h ..\dialog.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
settings.obj: ..\settings.c ..\putty.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
sftp.obj: ..\sftp.c ..\misc.h ..\int64.h ..\tree234.h ..\sftp.h \
|
|
..\puttymem.h
|
|
sizetip.obj: ..\windows\sizetip.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
slookup.obj: ..\charset\slookup.c ..\charset\charset.h ..\charset\internal.h \
|
|
..\charset\enum.c ..\charset\sbcsdat.c ..\charset\utf8.c
|
|
ssh.obj: ..\ssh.c ..\putty.h ..\tree234.h ..\ssh.h ..\sshgssc.h ..\sshgss.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h ..\int64.h \
|
|
..\pgssapi.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\windows\winhelp.h ..\charset\charset.h
|
|
sshaes.obj: ..\sshaes.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
ssharcf.obj: ..\ssharcf.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshblowf.obj: ..\sshblowf.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshbn.obj: ..\sshbn.c ..\misc.h ..\ssh.h ..\puttymem.h ..\tree234.h \
|
|
..\network.h ..\int64.h
|
|
sshcrc.obj: ..\sshcrc.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshcrcda.obj: ..\sshcrcda.c ..\misc.h ..\ssh.h ..\puttymem.h ..\tree234.h \
|
|
..\network.h ..\int64.h
|
|
sshdes.obj: ..\sshdes.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshdh.obj: ..\sshdh.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshdss.obj: ..\sshdss.c ..\ssh.h ..\misc.h ..\puttymem.h ..\tree234.h \
|
|
..\network.h ..\int64.h
|
|
sshdssg.obj: ..\sshdssg.c ..\misc.h ..\ssh.h ..\puttymem.h ..\tree234.h \
|
|
..\network.h ..\int64.h
|
|
sshgssc.obj: ..\sshgssc.c ..\putty.h ..\sshgssc.h ..\misc.h ..\puttyps.h \
|
|
..\network.h ..\pgssapi.h ..\sshgss.h ..\puttymem.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\tree234.h ..\windows\winhelp.h ..\charset\charset.h
|
|
sshmd5.obj: ..\sshmd5.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshprime.obj: ..\sshprime.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshpubk.obj: ..\sshpubk.c ..\putty.h ..\ssh.h ..\misc.h ..\puttyps.h \
|
|
..\network.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
sshrand.obj: ..\sshrand.c ..\putty.h ..\ssh.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
sshrsa.obj: ..\sshrsa.c ..\ssh.h ..\misc.h ..\puttymem.h ..\tree234.h \
|
|
..\network.h ..\int64.h
|
|
sshrsag.obj: ..\sshrsag.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshsh256.obj: ..\sshsh256.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshsh512.obj: ..\sshsh512.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshsha.obj: ..\sshsha.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
sshzlib.obj: ..\sshzlib.c ..\ssh.h ..\puttymem.h ..\tree234.h ..\network.h \
|
|
..\int64.h ..\misc.h
|
|
telnet.obj: ..\telnet.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
terminal.obj: ..\terminal.c ..\putty.h ..\terminal.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\tree234.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
testback.obj: ..\testback.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
time.obj: ..\time.c
|
|
timing.obj: ..\timing.c ..\putty.h ..\tree234.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
toucs.obj: ..\charset\toucs.c ..\charset\charset.h ..\charset\internal.h
|
|
tree234.obj: ..\tree234.c ..\puttymem.h ..\tree234.h
|
|
utf8.obj: ..\charset\utf8.c ..\charset\charset.h ..\charset\internal.h
|
|
ux_x11.obj: ..\unix\ux_x11.c ..\putty.h ..\ssh.h ..\network.h ..\puttyps.h \
|
|
..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxagentc.obj: ..\unix\uxagentc.c ..\putty.h ..\misc.h ..\tree234.h \
|
|
..\puttymem.h ..\puttyps.h ..\network.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxcfg.obj: ..\unix\uxcfg.c ..\putty.h ..\dialog.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxcons.obj: ..\unix\uxcons.c ..\putty.h ..\storage.h ..\ssh.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxgen.obj: ..\unix\uxgen.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
uxgss.obj: ..\unix\uxgss.c ..\putty.h ..\pgssapi.h ..\sshgss.h ..\sshgssc.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxmisc.obj: ..\unix\uxmisc.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
uxnet.obj: ..\unix\uxnet.c ..\putty.h ..\network.h ..\tree234.h ..\puttyps.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
uxnoise.obj: ..\unix\uxnoise.c ..\putty.h ..\ssh.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxplink.obj: ..\unix\uxplink.c ..\putty.h ..\storage.h ..\tree234.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxprint.obj: ..\unix\uxprint.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxproxy.obj: ..\unix\uxproxy.c ..\tree234.h ..\putty.h ..\network.h \
|
|
..\proxy.h ..\puttyps.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxpterm.obj: ..\unix\uxpterm.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxpty.obj: ..\unix\uxpty.c ..\putty.h ..\tree234.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
uxputty.obj: ..\unix\uxputty.c ..\putty.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxsel.obj: ..\unix\uxsel.c ..\putty.h ..\tree234.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
uxser.obj: ..\unix\uxser.c ..\putty.h ..\tree234.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
uxsftp.obj: ..\unix\uxsftp.c ..\putty.h ..\ssh.h ..\psftp.h ..\int64.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h \
|
|
..\tree234.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\windows\winhelp.h ..\charset\charset.h
|
|
uxsignal.obj: ..\unix\uxsignal.c
|
|
uxstore.obj: ..\unix\uxstore.c ..\putty.h ..\storage.h ..\tree234.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
uxucs.obj: ..\unix\uxucs.c ..\putty.h ..\charset\charset.h ..\terminal.h \
|
|
..\misc.h ..\puttyps.h ..\network.h ..\tree234.h \
|
|
..\puttymem.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\windows\winhelp.h
|
|
wcwidth.obj: ..\wcwidth.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
wildcard.obj: ..\wildcard.c ..\putty.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\puttymem.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
wincfg.obj: ..\windows\wincfg.c ..\putty.h ..\dialog.h ..\storage.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
wincons.obj: ..\windows\wincons.c ..\putty.h ..\storage.h ..\ssh.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h \
|
|
..\tree234.h ..\int64.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
winctrls.obj: ..\windows\winctrls.c ..\putty.h ..\misc.h ..\dialog.h \
|
|
..\puttyps.h ..\network.h ..\puttymem.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\tree234.h ..\windows\winhelp.h ..\charset\charset.h
|
|
windefs.obj: ..\windows\windefs.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
windlg.obj: ..\windows\windlg.c ..\putty.h ..\ssh.h ..\windows\win_res.h \
|
|
..\storage.h ..\dialog.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\puttymem.h ..\tree234.h ..\int64.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
window.obj: ..\windows\window.c ..\putty.h ..\terminal.h ..\storage.h \
|
|
..\windows\win_res.h ..\puttyps.h ..\network.h ..\misc.h \
|
|
..\tree234.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
wingss.obj: ..\windows\wingss.c ..\putty.h ..\pgssapi.h ..\sshgss.h \
|
|
..\sshgssc.h ..\misc.h ..\puttyps.h ..\network.h \
|
|
..\puttymem.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\tree234.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
winhandl.obj: ..\windows\winhandl.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winhelp.obj: ..\windows\winhelp.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winjump.obj: ..\windows\winjump.c ..\putty.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winmisc.obj: ..\windows\winmisc.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winnet.obj: ..\windows\winnet.c ..\putty.h ..\network.h ..\tree234.h \
|
|
..\puttyps.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
winnoise.obj: ..\windows\winnoise.c ..\putty.h ..\ssh.h ..\storage.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h \
|
|
..\tree234.h ..\int64.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\windows\winhelp.h \
|
|
..\charset\charset.h
|
|
winnojmp.obj: ..\windows\winnojmp.c
|
|
winpgen.obj: ..\windows\winpgen.c ..\putty.h ..\ssh.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winpgnt.obj: ..\windows\winpgnt.c ..\putty.h ..\ssh.h ..\misc.h ..\tree234.h \
|
|
..\puttyps.h ..\network.h ..\puttymem.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winpgntc.obj: ..\windows\winpgntc.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winplink.obj: ..\windows\winplink.c ..\putty.h ..\storage.h ..\tree234.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winprint.obj: ..\windows\winprint.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winproxy.obj: ..\windows\winproxy.c ..\tree234.h ..\putty.h ..\network.h \
|
|
..\proxy.h ..\puttyps.h ..\misc.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\puttymem.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winser.obj: ..\windows\winser.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winsftp.obj: ..\windows\winsftp.c ..\putty.h ..\psftp.h ..\ssh.h ..\int64.h \
|
|
..\puttyps.h ..\network.h ..\misc.h ..\puttymem.h \
|
|
..\tree234.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\windows\winhelp.h ..\charset\charset.h
|
|
winstore.obj: ..\windows\winstore.c ..\putty.h ..\storage.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
wintime.obj: ..\windows\wintime.c ..\putty.h ..\puttyps.h ..\network.h \
|
|
..\misc.h ..\windows\winstuff.h ..\macosx\osx.h \
|
|
..\unix\unix.h ..\puttymem.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winucs.obj: ..\windows\winucs.c ..\putty.h ..\terminal.h ..\misc.h \
|
|
..\puttyps.h ..\network.h ..\tree234.h ..\puttymem.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winutils.obj: ..\windows\winutils.c ..\putty.h ..\misc.h ..\puttyps.h \
|
|
..\network.h ..\puttymem.h ..\windows\winstuff.h \
|
|
..\macosx\osx.h ..\unix\unix.h ..\tree234.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
winx11.obj: ..\windows\winx11.c ..\putty.h ..\ssh.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\puttymem.h ..\tree234.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
x11fwd.obj: ..\x11fwd.c ..\putty.h ..\ssh.h ..\tree234.h ..\puttyps.h \
|
|
..\network.h ..\misc.h ..\puttymem.h ..\int64.h \
|
|
..\windows\winstuff.h ..\macosx\osx.h ..\unix\unix.h \
|
|
..\windows\winhelp.h ..\charset\charset.h
|
|
xenc.obj: ..\charset\xenc.c ..\charset\charset.h ..\charset\internal.h
|
|
xkeysym.obj: ..\unix\xkeysym.c ..\misc.h ..\puttymem.h
|
|
xpmptcfg.obj: ..\unix\xpmptcfg.c
|
|
xpmpterm.obj: ..\unix\xpmpterm.c
|
|
xpmpucfg.obj: ..\unix\xpmpucfg.c
|
|
xpmputty.obj: ..\unix\xpmputty.c
|
|
|
|
version.obj: FORCE
|
|
bcc32 $(VER) $(CFLAGS) /c ..\version.c
|
|
|
|
clean:
|
|
-del *.obj
|
|
-del *.exe
|
|
-del *.res
|
|
-del *.pch
|
|
-del *.aps
|
|
-del *.il*
|
|
-del *.pdb
|
|
-del *.rsp
|
|
-del *.tds
|
|
-del *.$$$$$$
|
|
|
|
FORCE:
|
|
-rem dummy command
|