4378 lines
182 KiB
Plaintext
4378 lines
182 KiB
Plaintext
# Makefile for putty under MPW.
|
|
#
|
|
# 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="-d SNAPSHOT=1999-01-25 -d SVN_REV=1234"
|
|
# Generates executables whose About box report them as being a
|
|
# development snapshot. SVN_REV is a Subversion revision number.
|
|
#
|
|
# - VER=-d RELEASE=0.43
|
|
# Generates executables whose About box report them as being a
|
|
# release version.
|
|
#
|
|
# - COMPAT=-d AUTO_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=-d WINSOCK_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=-d NO_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=-d NO_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=-d NO_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=-d NO_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=-d NO_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=-d MSVC4 (Windows only)
|
|
# - RCFL=-d MSVC4
|
|
# Makes a couple of minor changes so that PuTTY compiles using
|
|
# MSVC 4. You will also need -d NO_SECURITY and -d NO_MULTIMON.
|
|
#
|
|
# - RCFL=-d ASCIICTLS (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=-d TELNET_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=-d DEBUG
|
|
# Causes PuTTY to enable internal debugging.
|
|
#
|
|
# - XFLAGS=-d MALLOC_LOG
|
|
# Causes PuTTY to emit a file called putty_mem.log, logging every
|
|
# memory allocation and free, so you can track memory leaks.
|
|
#
|
|
# - XFLAGS=-d MINEFIELD (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.
|
|
#
|
|
|
|
|
|
ROptions = `Echo "{VER}" | StreamEdit -e "1,$ replace /=(Å)¨1°/ 'STR=¶¶¶¶¶"' ¨1 '¶¶¶¶¶"'"`
|
|
C_68K = {C}
|
|
C_CFM68K = {C}
|
|
C_PPC = {PPCC}
|
|
C_Carbon = {PPCC}
|
|
|
|
# -w 35 disables "unused parameter" warnings
|
|
COptions = -i : -i :: -i ::charset -w 35 -w err -proto strict -ansi on ¶
|
|
-notOnce
|
|
COptions_68K = {COptions} -model far -opt time
|
|
# Enabling "-opt space" for CFM-68K gives me undefined references to
|
|
# _$LDIVT and _$LMODT.
|
|
COptions_CFM68K = {COptions} -model cfmSeg -opt time
|
|
COptions_PPC = {COptions} -opt size -traceback
|
|
COptions_Carbon = {COptions} -opt size -traceback -d TARGET_API_MAC_CARBON
|
|
|
|
Link_68K = ILink
|
|
Link_CFM68K = ILink
|
|
Link_PPC = PPCLink
|
|
Link_Carbon = PPCLink
|
|
|
|
LinkOptions = -c 'pTTY'
|
|
LinkOptions_68K = {LinkOptions} -br 68k -model far -compact
|
|
LinkOptions_CFM68K = {LinkOptions} -br 020 -model cfmseg -compact
|
|
LinkOptions_PPC = {LinkOptions}
|
|
LinkOptions_Carbon = -m __appstart -w {LinkOptions}
|
|
|
|
Libs_68K = "{CLibraries}StdCLib.far.o" ¶
|
|
"{Libraries}MacRuntime.o" ¶
|
|
"{Libraries}MathLib.far.o" ¶
|
|
"{Libraries}IntEnv.far.o" ¶
|
|
"{Libraries}Interface.o" ¶
|
|
"{Libraries}Navigation.far.o" ¶
|
|
"{Libraries}OpenTransport.o" ¶
|
|
"{Libraries}OpenTransportApp.o" ¶
|
|
"{Libraries}OpenTptInet.o" ¶
|
|
"{Libraries}UnicodeConverterLib.far.o"
|
|
|
|
Libs_CFM = "{SharedLibraries}InterfaceLib" ¶
|
|
"{SharedLibraries}StdCLib" ¶
|
|
"{SharedLibraries}AppearanceLib" ¶
|
|
-weaklib AppearanceLib ¶
|
|
"{SharedLibraries}NavigationLib" ¶
|
|
-weaklib NavigationLib ¶
|
|
"{SharedLibraries}TextCommon" ¶
|
|
-weaklib TextCommon ¶
|
|
"{SharedLibraries}UnicodeConverter" ¶
|
|
-weaklib UnicodeConverter
|
|
|
|
Libs_CFM68K = {Libs_CFM} ¶
|
|
"{CFM68KLibraries}NuMacRuntime.o"
|
|
|
|
Libs_PPC = {Libs_CFM} ¶
|
|
"{SharedLibraries}ControlsLib" ¶
|
|
-weaklib ControlsLib ¶
|
|
"{SharedLibraries}WindowsLib" ¶
|
|
-weaklib WindowsLib ¶
|
|
"{SharedLibraries}OpenTransportLib" ¶
|
|
-weaklib OTClientLib ¶
|
|
-weaklib OTClientUtilLib ¶
|
|
"{SharedLibraries}OpenTptInternetLib" ¶
|
|
-weaklib OTInetClientLib ¶
|
|
"{PPCLibraries}StdCRuntime.o" ¶
|
|
"{PPCLibraries}PPCCRuntime.o" ¶
|
|
"{PPCLibraries}CarbonAccessors.o" ¶
|
|
"{PPCLibraries}OpenTransportAppPPC.o" ¶
|
|
"{PPCLibraries}OpenTptInetPPC.o"
|
|
|
|
Libs_Carbon = "{PPCLibraries}CarbonStdCLib.o" ¶
|
|
"{PPCLibraries}StdCRuntime.o" ¶
|
|
"{PPCLibraries}PPCCRuntime.o" ¶
|
|
"{SharedLibraries}CarbonLib" ¶
|
|
"{SharedLibraries}StdCLib"
|
|
|
|
all Ä PuTTY PuTTYgen PuTTYtel
|
|
|
|
PuTTY Ä PuTTY.68k PuTTY.ppc PuTTY.carbon
|
|
|
|
PuTTY.68k Ä be_all.68k.o config.68k.o cproxy.68k.o dialog.68k.o ¶
|
|
fromucs.68k.o ldisc.68k.o ldiscucs.68k.o localenc.68k.o ¶
|
|
logging.68k.o mac.68k.o macabout.68k.o macctrls.68k.o ¶
|
|
macdlg.68k.o macenc.68k.o macevlog.68k.o macmisc.68k.o ¶
|
|
macnet.68k.o macnoise.68k.o macstore.68k.o macterm.68k.o ¶
|
|
macucs.68k.o mimeenc.68k.o minibidi.68k.o misc.68k.o ¶
|
|
mtcpnet.68k.o otnet.68k.o pinger.68k.o portfwd.68k.o ¶
|
|
pproxy.68k.o proxy.68k.o raw.68k.o rlogin.68k.o sbcs.68k.o ¶
|
|
sbcsdat.68k.o settings.68k.o slookup.68k.o ssh.68k.o ¶
|
|
sshaes.68k.o ssharcf.68k.o sshblowf.68k.o sshbn.68k.o ¶
|
|
sshcrc.68k.o sshcrcda.68k.o sshdes.68k.o sshdh.68k.o ¶
|
|
sshdss.68k.o sshmd5.68k.o sshpubk.68k.o sshrand.68k.o ¶
|
|
sshrsa.68k.o sshsh256.68k.o sshsh512.68k.o sshsha.68k.o ¶
|
|
sshzlib.68k.o stricmp.68k.o telnet.68k.o terminal.68k.o ¶
|
|
testback.68k.o timing.68k.o toucs.68k.o tree234.68k.o ¶
|
|
utf8.68k.o version.68k.o vsnprint.68k.o wcwidth.68k.o ¶
|
|
wildcard.68k.o x11fwd.68k.o xenc.68k.o mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_68K} -o {Targ} -fragname PuTTY {LinkOptions_68K} be_all.68k.o ¶
|
|
config.68k.o cproxy.68k.o dialog.68k.o fromucs.68k.o ¶
|
|
ldisc.68k.o ldiscucs.68k.o localenc.68k.o logging.68k.o ¶
|
|
mac.68k.o macabout.68k.o macctrls.68k.o macdlg.68k.o ¶
|
|
macenc.68k.o macevlog.68k.o macmisc.68k.o macnet.68k.o ¶
|
|
macnoise.68k.o macstore.68k.o macterm.68k.o macucs.68k.o ¶
|
|
mimeenc.68k.o minibidi.68k.o misc.68k.o mtcpnet.68k.o ¶
|
|
otnet.68k.o pinger.68k.o portfwd.68k.o pproxy.68k.o ¶
|
|
proxy.68k.o raw.68k.o rlogin.68k.o sbcs.68k.o sbcsdat.68k.o ¶
|
|
settings.68k.o slookup.68k.o ssh.68k.o sshaes.68k.o ¶
|
|
ssharcf.68k.o sshblowf.68k.o sshbn.68k.o sshcrc.68k.o ¶
|
|
sshcrcda.68k.o sshdes.68k.o sshdh.68k.o sshdss.68k.o ¶
|
|
sshmd5.68k.o sshpubk.68k.o sshrand.68k.o sshrsa.68k.o ¶
|
|
sshsh256.68k.o sshsh512.68k.o sshsha.68k.o sshzlib.68k.o ¶
|
|
stricmp.68k.o telnet.68k.o terminal.68k.o testback.68k.o ¶
|
|
timing.68k.o toucs.68k.o tree234.68k.o utf8.68k.o ¶
|
|
version.68k.o vsnprint.68k.o wcwidth.68k.o wildcard.68k.o ¶
|
|
x11fwd.68k.o xenc.68k.o {Libs_68K}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTY.cfm68k Ä be_all.cfm68k.o config.cfm68k.o cproxy.cfm68k.o ¶
|
|
dialog.cfm68k.o fromucs.cfm68k.o ldisc.cfm68k.o ¶
|
|
ldiscucs.cfm68k.o localenc.cfm68k.o logging.cfm68k.o ¶
|
|
mac.cfm68k.o macabout.cfm68k.o macctrls.cfm68k.o ¶
|
|
macdlg.cfm68k.o macenc.cfm68k.o macevlog.cfm68k.o ¶
|
|
macmisc.cfm68k.o macnet.cfm68k.o macnoise.cfm68k.o ¶
|
|
macstore.cfm68k.o macterm.cfm68k.o macucs.cfm68k.o ¶
|
|
mimeenc.cfm68k.o minibidi.cfm68k.o misc.cfm68k.o ¶
|
|
mtcpnet.cfm68k.o otnet.cfm68k.o pinger.cfm68k.o ¶
|
|
portfwd.cfm68k.o pproxy.cfm68k.o proxy.cfm68k.o raw.cfm68k.o ¶
|
|
rlogin.cfm68k.o sbcs.cfm68k.o sbcsdat.cfm68k.o ¶
|
|
settings.cfm68k.o slookup.cfm68k.o ssh.cfm68k.o ¶
|
|
sshaes.cfm68k.o ssharcf.cfm68k.o sshblowf.cfm68k.o ¶
|
|
sshbn.cfm68k.o sshcrc.cfm68k.o sshcrcda.cfm68k.o ¶
|
|
sshdes.cfm68k.o sshdh.cfm68k.o sshdss.cfm68k.o ¶
|
|
sshmd5.cfm68k.o sshpubk.cfm68k.o sshrand.cfm68k.o ¶
|
|
sshrsa.cfm68k.o sshsh256.cfm68k.o sshsh512.cfm68k.o ¶
|
|
sshsha.cfm68k.o sshzlib.cfm68k.o stricmp.cfm68k.o ¶
|
|
telnet.cfm68k.o terminal.cfm68k.o testback.cfm68k.o ¶
|
|
timing.cfm68k.o toucs.cfm68k.o tree234.cfm68k.o ¶
|
|
utf8.cfm68k.o version.cfm68k.o vsnprint.cfm68k.o ¶
|
|
wcwidth.cfm68k.o wildcard.cfm68k.o x11fwd.cfm68k.o ¶
|
|
xenc.cfm68k.o mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_CFM68K} -o {Targ} -fragname PuTTY {LinkOptions_CFM68K} ¶
|
|
be_all.cfm68k.o config.cfm68k.o cproxy.cfm68k.o ¶
|
|
dialog.cfm68k.o fromucs.cfm68k.o ldisc.cfm68k.o ¶
|
|
ldiscucs.cfm68k.o localenc.cfm68k.o logging.cfm68k.o ¶
|
|
mac.cfm68k.o macabout.cfm68k.o macctrls.cfm68k.o ¶
|
|
macdlg.cfm68k.o macenc.cfm68k.o macevlog.cfm68k.o ¶
|
|
macmisc.cfm68k.o macnet.cfm68k.o macnoise.cfm68k.o ¶
|
|
macstore.cfm68k.o macterm.cfm68k.o macucs.cfm68k.o ¶
|
|
mimeenc.cfm68k.o minibidi.cfm68k.o misc.cfm68k.o ¶
|
|
mtcpnet.cfm68k.o otnet.cfm68k.o pinger.cfm68k.o ¶
|
|
portfwd.cfm68k.o pproxy.cfm68k.o proxy.cfm68k.o raw.cfm68k.o ¶
|
|
rlogin.cfm68k.o sbcs.cfm68k.o sbcsdat.cfm68k.o ¶
|
|
settings.cfm68k.o slookup.cfm68k.o ssh.cfm68k.o ¶
|
|
sshaes.cfm68k.o ssharcf.cfm68k.o sshblowf.cfm68k.o ¶
|
|
sshbn.cfm68k.o sshcrc.cfm68k.o sshcrcda.cfm68k.o ¶
|
|
sshdes.cfm68k.o sshdh.cfm68k.o sshdss.cfm68k.o ¶
|
|
sshmd5.cfm68k.o sshpubk.cfm68k.o sshrand.cfm68k.o ¶
|
|
sshrsa.cfm68k.o sshsh256.cfm68k.o sshsh512.cfm68k.o ¶
|
|
sshsha.cfm68k.o sshzlib.cfm68k.o stricmp.cfm68k.o ¶
|
|
telnet.cfm68k.o terminal.cfm68k.o testback.cfm68k.o ¶
|
|
timing.cfm68k.o toucs.cfm68k.o tree234.cfm68k.o ¶
|
|
utf8.cfm68k.o version.cfm68k.o vsnprint.cfm68k.o ¶
|
|
wcwidth.cfm68k.o wildcard.cfm68k.o x11fwd.cfm68k.o ¶
|
|
xenc.cfm68k.o {Libs_CFM68K}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTY.ppc Ä be_all.ppc.o config.ppc.o cproxy.ppc.o dialog.ppc.o ¶
|
|
fromucs.ppc.o ldisc.ppc.o ldiscucs.ppc.o localenc.ppc.o ¶
|
|
logging.ppc.o mac.ppc.o macabout.ppc.o macctrls.ppc.o ¶
|
|
macdlg.ppc.o macenc.ppc.o macevlog.ppc.o macmisc.ppc.o ¶
|
|
macnet.ppc.o macnoise.ppc.o macstore.ppc.o macterm.ppc.o ¶
|
|
macucs.ppc.o mimeenc.ppc.o minibidi.ppc.o misc.ppc.o ¶
|
|
mtcpnet.ppc.o otnet.ppc.o pinger.ppc.o portfwd.ppc.o ¶
|
|
pproxy.ppc.o proxy.ppc.o raw.ppc.o rlogin.ppc.o sbcs.ppc.o ¶
|
|
sbcsdat.ppc.o settings.ppc.o slookup.ppc.o ssh.ppc.o ¶
|
|
sshaes.ppc.o ssharcf.ppc.o sshblowf.ppc.o sshbn.ppc.o ¶
|
|
sshcrc.ppc.o sshcrcda.ppc.o sshdes.ppc.o sshdh.ppc.o ¶
|
|
sshdss.ppc.o sshmd5.ppc.o sshpubk.ppc.o sshrand.ppc.o ¶
|
|
sshrsa.ppc.o sshsh256.ppc.o sshsh512.ppc.o sshsha.ppc.o ¶
|
|
sshzlib.ppc.o stricmp.ppc.o telnet.ppc.o terminal.ppc.o ¶
|
|
testback.ppc.o timing.ppc.o toucs.ppc.o tree234.ppc.o ¶
|
|
utf8.ppc.o version.ppc.o vsnprint.ppc.o wcwidth.ppc.o ¶
|
|
wildcard.ppc.o x11fwd.ppc.o xenc.ppc.o mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_PPC} -o {Targ} -fragname PuTTY {LinkOptions_PPC} be_all.ppc.o ¶
|
|
config.ppc.o cproxy.ppc.o dialog.ppc.o fromucs.ppc.o ¶
|
|
ldisc.ppc.o ldiscucs.ppc.o localenc.ppc.o logging.ppc.o ¶
|
|
mac.ppc.o macabout.ppc.o macctrls.ppc.o macdlg.ppc.o ¶
|
|
macenc.ppc.o macevlog.ppc.o macmisc.ppc.o macnet.ppc.o ¶
|
|
macnoise.ppc.o macstore.ppc.o macterm.ppc.o macucs.ppc.o ¶
|
|
mimeenc.ppc.o minibidi.ppc.o misc.ppc.o mtcpnet.ppc.o ¶
|
|
otnet.ppc.o pinger.ppc.o portfwd.ppc.o pproxy.ppc.o ¶
|
|
proxy.ppc.o raw.ppc.o rlogin.ppc.o sbcs.ppc.o sbcsdat.ppc.o ¶
|
|
settings.ppc.o slookup.ppc.o ssh.ppc.o sshaes.ppc.o ¶
|
|
ssharcf.ppc.o sshblowf.ppc.o sshbn.ppc.o sshcrc.ppc.o ¶
|
|
sshcrcda.ppc.o sshdes.ppc.o sshdh.ppc.o sshdss.ppc.o ¶
|
|
sshmd5.ppc.o sshpubk.ppc.o sshrand.ppc.o sshrsa.ppc.o ¶
|
|
sshsh256.ppc.o sshsh512.ppc.o sshsha.ppc.o sshzlib.ppc.o ¶
|
|
stricmp.ppc.o telnet.ppc.o terminal.ppc.o testback.ppc.o ¶
|
|
timing.ppc.o toucs.ppc.o tree234.ppc.o utf8.ppc.o ¶
|
|
version.ppc.o vsnprint.ppc.o wcwidth.ppc.o wildcard.ppc.o ¶
|
|
x11fwd.ppc.o xenc.ppc.o {Libs_PPC}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTY.carbon Ä be_all.carbon.o config.carbon.o cproxy.carbon.o ¶
|
|
dialog.carbon.o fromucs.carbon.o ldisc.carbon.o ¶
|
|
ldiscucs.carbon.o localenc.carbon.o logging.carbon.o ¶
|
|
mac.carbon.o macabout.carbon.o macctrls.carbon.o ¶
|
|
macdlg.carbon.o macenc.carbon.o macevlog.carbon.o ¶
|
|
macmisc.carbon.o macnet.carbon.o macnoise.carbon.o ¶
|
|
macstore.carbon.o macterm.carbon.o macucs.carbon.o ¶
|
|
mimeenc.carbon.o minibidi.carbon.o misc.carbon.o ¶
|
|
mtcpnet.carbon.o otnet.carbon.o pinger.carbon.o ¶
|
|
portfwd.carbon.o pproxy.carbon.o proxy.carbon.o raw.carbon.o ¶
|
|
rlogin.carbon.o sbcs.carbon.o sbcsdat.carbon.o ¶
|
|
settings.carbon.o slookup.carbon.o ssh.carbon.o ¶
|
|
sshaes.carbon.o ssharcf.carbon.o sshblowf.carbon.o ¶
|
|
sshbn.carbon.o sshcrc.carbon.o sshcrcda.carbon.o ¶
|
|
sshdes.carbon.o sshdh.carbon.o sshdss.carbon.o ¶
|
|
sshmd5.carbon.o sshpubk.carbon.o sshrand.carbon.o ¶
|
|
sshrsa.carbon.o sshsh256.carbon.o sshsh512.carbon.o ¶
|
|
sshsha.carbon.o sshzlib.carbon.o stricmp.carbon.o ¶
|
|
telnet.carbon.o terminal.carbon.o testback.carbon.o ¶
|
|
timing.carbon.o toucs.carbon.o tree234.carbon.o ¶
|
|
utf8.carbon.o version.carbon.o vsnprint.carbon.o ¶
|
|
wcwidth.carbon.o wildcard.carbon.o x11fwd.carbon.o ¶
|
|
xenc.carbon.o mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_Carbon} -o {Targ} -fragname PuTTY {LinkOptions_Carbon} ¶
|
|
be_all.carbon.o config.carbon.o cproxy.carbon.o ¶
|
|
dialog.carbon.o fromucs.carbon.o ldisc.carbon.o ¶
|
|
ldiscucs.carbon.o localenc.carbon.o logging.carbon.o ¶
|
|
mac.carbon.o macabout.carbon.o macctrls.carbon.o ¶
|
|
macdlg.carbon.o macenc.carbon.o macevlog.carbon.o ¶
|
|
macmisc.carbon.o macnet.carbon.o macnoise.carbon.o ¶
|
|
macstore.carbon.o macterm.carbon.o macucs.carbon.o ¶
|
|
mimeenc.carbon.o minibidi.carbon.o misc.carbon.o ¶
|
|
mtcpnet.carbon.o otnet.carbon.o pinger.carbon.o ¶
|
|
portfwd.carbon.o pproxy.carbon.o proxy.carbon.o raw.carbon.o ¶
|
|
rlogin.carbon.o sbcs.carbon.o sbcsdat.carbon.o ¶
|
|
settings.carbon.o slookup.carbon.o ssh.carbon.o ¶
|
|
sshaes.carbon.o ssharcf.carbon.o sshblowf.carbon.o ¶
|
|
sshbn.carbon.o sshcrc.carbon.o sshcrcda.carbon.o ¶
|
|
sshdes.carbon.o sshdh.carbon.o sshdss.carbon.o ¶
|
|
sshmd5.carbon.o sshpubk.carbon.o sshrand.carbon.o ¶
|
|
sshrsa.carbon.o sshsh256.carbon.o sshsh512.carbon.o ¶
|
|
sshsha.carbon.o sshzlib.carbon.o stricmp.carbon.o ¶
|
|
telnet.carbon.o terminal.carbon.o testback.carbon.o ¶
|
|
timing.carbon.o toucs.carbon.o tree234.carbon.o ¶
|
|
utf8.carbon.o version.carbon.o vsnprint.carbon.o ¶
|
|
wcwidth.carbon.o wildcard.carbon.o x11fwd.carbon.o ¶
|
|
xenc.carbon.o {Libs_Carbon}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYgen Ä PuTTYgen.68k PuTTYgen.ppc PuTTYgen.carbon
|
|
|
|
PuTTYgen.68k Ä import.68k.o macabout.68k.o macmisc.68k.o macnoise.68k.o ¶
|
|
macpgen.68k.o macpgkey.68k.o macstore.68k.o misc.68k.o ¶
|
|
sshaes.68k.o sshbn.68k.o sshdes.68k.o sshdss.68k.o ¶
|
|
sshdssg.68k.o sshmd5.68k.o sshprime.68k.o sshpubk.68k.o ¶
|
|
sshrand.68k.o sshrsa.68k.o sshrsag.68k.o sshsh512.68k.o ¶
|
|
sshsha.68k.o version.68k.o macpgen.rsrc
|
|
Duplicate -y macpgen.rsrc {Targ}
|
|
{Link_68K} -o {Targ} -fragname PuTTYgen {LinkOptions_68K} ¶
|
|
import.68k.o macabout.68k.o macmisc.68k.o macnoise.68k.o ¶
|
|
macpgen.68k.o macpgkey.68k.o macstore.68k.o misc.68k.o ¶
|
|
sshaes.68k.o sshbn.68k.o sshdes.68k.o sshdss.68k.o ¶
|
|
sshdssg.68k.o sshmd5.68k.o sshprime.68k.o sshpubk.68k.o ¶
|
|
sshrand.68k.o sshrsa.68k.o sshrsag.68k.o sshsh512.68k.o ¶
|
|
sshsha.68k.o version.68k.o {Libs_68K}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYgen.cfm68k Ä import.cfm68k.o macabout.cfm68k.o macmisc.cfm68k.o ¶
|
|
macnoise.cfm68k.o macpgen.cfm68k.o macpgkey.cfm68k.o ¶
|
|
macstore.cfm68k.o misc.cfm68k.o sshaes.cfm68k.o ¶
|
|
sshbn.cfm68k.o sshdes.cfm68k.o sshdss.cfm68k.o ¶
|
|
sshdssg.cfm68k.o sshmd5.cfm68k.o sshprime.cfm68k.o ¶
|
|
sshpubk.cfm68k.o sshrand.cfm68k.o sshrsa.cfm68k.o ¶
|
|
sshrsag.cfm68k.o sshsh512.cfm68k.o sshsha.cfm68k.o ¶
|
|
version.cfm68k.o macpgen.rsrc
|
|
Duplicate -y macpgen.rsrc {Targ}
|
|
{Link_CFM68K} -o {Targ} -fragname PuTTYgen {LinkOptions_CFM68K} ¶
|
|
import.cfm68k.o macabout.cfm68k.o macmisc.cfm68k.o ¶
|
|
macnoise.cfm68k.o macpgen.cfm68k.o macpgkey.cfm68k.o ¶
|
|
macstore.cfm68k.o misc.cfm68k.o sshaes.cfm68k.o ¶
|
|
sshbn.cfm68k.o sshdes.cfm68k.o sshdss.cfm68k.o ¶
|
|
sshdssg.cfm68k.o sshmd5.cfm68k.o sshprime.cfm68k.o ¶
|
|
sshpubk.cfm68k.o sshrand.cfm68k.o sshrsa.cfm68k.o ¶
|
|
sshrsag.cfm68k.o sshsh512.cfm68k.o sshsha.cfm68k.o ¶
|
|
version.cfm68k.o {Libs_CFM68K}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYgen.ppc Ä import.ppc.o macabout.ppc.o macmisc.ppc.o macnoise.ppc.o ¶
|
|
macpgen.ppc.o macpgkey.ppc.o macstore.ppc.o misc.ppc.o ¶
|
|
sshaes.ppc.o sshbn.ppc.o sshdes.ppc.o sshdss.ppc.o ¶
|
|
sshdssg.ppc.o sshmd5.ppc.o sshprime.ppc.o sshpubk.ppc.o ¶
|
|
sshrand.ppc.o sshrsa.ppc.o sshrsag.ppc.o sshsh512.ppc.o ¶
|
|
sshsha.ppc.o version.ppc.o macpgen.rsrc
|
|
Duplicate -y macpgen.rsrc {Targ}
|
|
{Link_PPC} -o {Targ} -fragname PuTTYgen {LinkOptions_PPC} ¶
|
|
import.ppc.o macabout.ppc.o macmisc.ppc.o macnoise.ppc.o ¶
|
|
macpgen.ppc.o macpgkey.ppc.o macstore.ppc.o misc.ppc.o ¶
|
|
sshaes.ppc.o sshbn.ppc.o sshdes.ppc.o sshdss.ppc.o ¶
|
|
sshdssg.ppc.o sshmd5.ppc.o sshprime.ppc.o sshpubk.ppc.o ¶
|
|
sshrand.ppc.o sshrsa.ppc.o sshrsag.ppc.o sshsh512.ppc.o ¶
|
|
sshsha.ppc.o version.ppc.o {Libs_PPC}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYgen.carbon Ä import.carbon.o macabout.carbon.o macmisc.carbon.o ¶
|
|
macnoise.carbon.o macpgen.carbon.o macpgkey.carbon.o ¶
|
|
macstore.carbon.o misc.carbon.o sshaes.carbon.o ¶
|
|
sshbn.carbon.o sshdes.carbon.o sshdss.carbon.o ¶
|
|
sshdssg.carbon.o sshmd5.carbon.o sshprime.carbon.o ¶
|
|
sshpubk.carbon.o sshrand.carbon.o sshrsa.carbon.o ¶
|
|
sshrsag.carbon.o sshsh512.carbon.o sshsha.carbon.o ¶
|
|
version.carbon.o macpgen.rsrc
|
|
Duplicate -y macpgen.rsrc {Targ}
|
|
{Link_Carbon} -o {Targ} -fragname PuTTYgen {LinkOptions_Carbon} ¶
|
|
import.carbon.o macabout.carbon.o macmisc.carbon.o ¶
|
|
macnoise.carbon.o macpgen.carbon.o macpgkey.carbon.o ¶
|
|
macstore.carbon.o misc.carbon.o sshaes.carbon.o ¶
|
|
sshbn.carbon.o sshdes.carbon.o sshdss.carbon.o ¶
|
|
sshdssg.carbon.o sshmd5.carbon.o sshprime.carbon.o ¶
|
|
sshpubk.carbon.o sshrand.carbon.o sshrsa.carbon.o ¶
|
|
sshrsag.carbon.o sshsh512.carbon.o sshsha.carbon.o ¶
|
|
version.carbon.o {Libs_Carbon}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYtel Ä PuTTYtel.68k PuTTYtel.ppc PuTTYtel.carbon
|
|
|
|
PuTTYtel.68k Ä be_nossh.68k.o config.68k.o dialog.68k.o fromucs.68k.o ¶
|
|
ldisc.68k.o ldiscucs.68k.o localenc.68k.o logging.68k.o ¶
|
|
mac.68k.o macabout.68k.o macctrls.68k.o macdlg.68k.o ¶
|
|
macenc.68k.o macevlog.68k.o macmisc.68k.o macnet.68k.o ¶
|
|
macstore.68k.o macterm.68k.o macucs.68k.o mimeenc.68k.o ¶
|
|
minibidi.68k.o misc.68k.o mtcpnet.68k.o nocproxy.68k.o ¶
|
|
otnet.68k.o pinger.68k.o pproxy.68k.o proxy.68k.o raw.68k.o ¶
|
|
rlogin.68k.o sbcs.68k.o sbcsdat.68k.o settings.68k.o ¶
|
|
slookup.68k.o stricmp.68k.o telnet.68k.o terminal.68k.o ¶
|
|
testback.68k.o timing.68k.o toucs.68k.o tree234.68k.o ¶
|
|
utf8.68k.o version.68k.o vsnprint.68k.o wcwidth.68k.o ¶
|
|
xenc.68k.o mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_68K} -o {Targ} -fragname PuTTYtel {LinkOptions_68K} ¶
|
|
be_nossh.68k.o config.68k.o dialog.68k.o fromucs.68k.o ¶
|
|
ldisc.68k.o ldiscucs.68k.o localenc.68k.o logging.68k.o ¶
|
|
mac.68k.o macabout.68k.o macctrls.68k.o macdlg.68k.o ¶
|
|
macenc.68k.o macevlog.68k.o macmisc.68k.o macnet.68k.o ¶
|
|
macstore.68k.o macterm.68k.o macucs.68k.o mimeenc.68k.o ¶
|
|
minibidi.68k.o misc.68k.o mtcpnet.68k.o nocproxy.68k.o ¶
|
|
otnet.68k.o pinger.68k.o pproxy.68k.o proxy.68k.o raw.68k.o ¶
|
|
rlogin.68k.o sbcs.68k.o sbcsdat.68k.o settings.68k.o ¶
|
|
slookup.68k.o stricmp.68k.o telnet.68k.o terminal.68k.o ¶
|
|
testback.68k.o timing.68k.o toucs.68k.o tree234.68k.o ¶
|
|
utf8.68k.o version.68k.o vsnprint.68k.o wcwidth.68k.o ¶
|
|
xenc.68k.o {Libs_68K}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYtel.cfm68k Ä be_nossh.cfm68k.o config.cfm68k.o dialog.cfm68k.o ¶
|
|
fromucs.cfm68k.o ldisc.cfm68k.o ldiscucs.cfm68k.o ¶
|
|
localenc.cfm68k.o logging.cfm68k.o mac.cfm68k.o ¶
|
|
macabout.cfm68k.o macctrls.cfm68k.o macdlg.cfm68k.o ¶
|
|
macenc.cfm68k.o macevlog.cfm68k.o macmisc.cfm68k.o ¶
|
|
macnet.cfm68k.o macstore.cfm68k.o macterm.cfm68k.o ¶
|
|
macucs.cfm68k.o mimeenc.cfm68k.o minibidi.cfm68k.o ¶
|
|
misc.cfm68k.o mtcpnet.cfm68k.o nocproxy.cfm68k.o ¶
|
|
otnet.cfm68k.o pinger.cfm68k.o pproxy.cfm68k.o ¶
|
|
proxy.cfm68k.o raw.cfm68k.o rlogin.cfm68k.o sbcs.cfm68k.o ¶
|
|
sbcsdat.cfm68k.o settings.cfm68k.o slookup.cfm68k.o ¶
|
|
stricmp.cfm68k.o telnet.cfm68k.o terminal.cfm68k.o ¶
|
|
testback.cfm68k.o timing.cfm68k.o toucs.cfm68k.o ¶
|
|
tree234.cfm68k.o utf8.cfm68k.o version.cfm68k.o ¶
|
|
vsnprint.cfm68k.o wcwidth.cfm68k.o xenc.cfm68k.o ¶
|
|
mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_CFM68K} -o {Targ} -fragname PuTTYtel {LinkOptions_CFM68K} ¶
|
|
be_nossh.cfm68k.o config.cfm68k.o dialog.cfm68k.o ¶
|
|
fromucs.cfm68k.o ldisc.cfm68k.o ldiscucs.cfm68k.o ¶
|
|
localenc.cfm68k.o logging.cfm68k.o mac.cfm68k.o ¶
|
|
macabout.cfm68k.o macctrls.cfm68k.o macdlg.cfm68k.o ¶
|
|
macenc.cfm68k.o macevlog.cfm68k.o macmisc.cfm68k.o ¶
|
|
macnet.cfm68k.o macstore.cfm68k.o macterm.cfm68k.o ¶
|
|
macucs.cfm68k.o mimeenc.cfm68k.o minibidi.cfm68k.o ¶
|
|
misc.cfm68k.o mtcpnet.cfm68k.o nocproxy.cfm68k.o ¶
|
|
otnet.cfm68k.o pinger.cfm68k.o pproxy.cfm68k.o ¶
|
|
proxy.cfm68k.o raw.cfm68k.o rlogin.cfm68k.o sbcs.cfm68k.o ¶
|
|
sbcsdat.cfm68k.o settings.cfm68k.o slookup.cfm68k.o ¶
|
|
stricmp.cfm68k.o telnet.cfm68k.o terminal.cfm68k.o ¶
|
|
testback.cfm68k.o timing.cfm68k.o toucs.cfm68k.o ¶
|
|
tree234.cfm68k.o utf8.cfm68k.o version.cfm68k.o ¶
|
|
vsnprint.cfm68k.o wcwidth.cfm68k.o xenc.cfm68k.o ¶
|
|
{Libs_CFM68K}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYtel.ppc Ä be_nossh.ppc.o config.ppc.o dialog.ppc.o fromucs.ppc.o ¶
|
|
ldisc.ppc.o ldiscucs.ppc.o localenc.ppc.o logging.ppc.o ¶
|
|
mac.ppc.o macabout.ppc.o macctrls.ppc.o macdlg.ppc.o ¶
|
|
macenc.ppc.o macevlog.ppc.o macmisc.ppc.o macnet.ppc.o ¶
|
|
macstore.ppc.o macterm.ppc.o macucs.ppc.o mimeenc.ppc.o ¶
|
|
minibidi.ppc.o misc.ppc.o mtcpnet.ppc.o nocproxy.ppc.o ¶
|
|
otnet.ppc.o pinger.ppc.o pproxy.ppc.o proxy.ppc.o raw.ppc.o ¶
|
|
rlogin.ppc.o sbcs.ppc.o sbcsdat.ppc.o settings.ppc.o ¶
|
|
slookup.ppc.o stricmp.ppc.o telnet.ppc.o terminal.ppc.o ¶
|
|
testback.ppc.o timing.ppc.o toucs.ppc.o tree234.ppc.o ¶
|
|
utf8.ppc.o version.ppc.o vsnprint.ppc.o wcwidth.ppc.o ¶
|
|
xenc.ppc.o mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_PPC} -o {Targ} -fragname PuTTYtel {LinkOptions_PPC} ¶
|
|
be_nossh.ppc.o config.ppc.o dialog.ppc.o fromucs.ppc.o ¶
|
|
ldisc.ppc.o ldiscucs.ppc.o localenc.ppc.o logging.ppc.o ¶
|
|
mac.ppc.o macabout.ppc.o macctrls.ppc.o macdlg.ppc.o ¶
|
|
macenc.ppc.o macevlog.ppc.o macmisc.ppc.o macnet.ppc.o ¶
|
|
macstore.ppc.o macterm.ppc.o macucs.ppc.o mimeenc.ppc.o ¶
|
|
minibidi.ppc.o misc.ppc.o mtcpnet.ppc.o nocproxy.ppc.o ¶
|
|
otnet.ppc.o pinger.ppc.o pproxy.ppc.o proxy.ppc.o raw.ppc.o ¶
|
|
rlogin.ppc.o sbcs.ppc.o sbcsdat.ppc.o settings.ppc.o ¶
|
|
slookup.ppc.o stricmp.ppc.o telnet.ppc.o terminal.ppc.o ¶
|
|
testback.ppc.o timing.ppc.o toucs.ppc.o tree234.ppc.o ¶
|
|
utf8.ppc.o version.ppc.o vsnprint.ppc.o wcwidth.ppc.o ¶
|
|
xenc.ppc.o {Libs_PPC}
|
|
SetFile -a BMi {Targ}
|
|
|
|
PuTTYtel.carbon Ä be_nossh.carbon.o config.carbon.o dialog.carbon.o ¶
|
|
fromucs.carbon.o ldisc.carbon.o ldiscucs.carbon.o ¶
|
|
localenc.carbon.o logging.carbon.o mac.carbon.o ¶
|
|
macabout.carbon.o macctrls.carbon.o macdlg.carbon.o ¶
|
|
macenc.carbon.o macevlog.carbon.o macmisc.carbon.o ¶
|
|
macnet.carbon.o macstore.carbon.o macterm.carbon.o ¶
|
|
macucs.carbon.o mimeenc.carbon.o minibidi.carbon.o ¶
|
|
misc.carbon.o mtcpnet.carbon.o nocproxy.carbon.o ¶
|
|
otnet.carbon.o pinger.carbon.o pproxy.carbon.o ¶
|
|
proxy.carbon.o raw.carbon.o rlogin.carbon.o sbcs.carbon.o ¶
|
|
sbcsdat.carbon.o settings.carbon.o slookup.carbon.o ¶
|
|
stricmp.carbon.o telnet.carbon.o terminal.carbon.o ¶
|
|
testback.carbon.o timing.carbon.o toucs.carbon.o ¶
|
|
tree234.carbon.o utf8.carbon.o version.carbon.o ¶
|
|
vsnprint.carbon.o wcwidth.carbon.o xenc.carbon.o ¶
|
|
mac_res.rsrc
|
|
Duplicate -y mac_res.rsrc {Targ}
|
|
{Link_Carbon} -o {Targ} -fragname PuTTYtel {LinkOptions_Carbon} ¶
|
|
be_nossh.carbon.o config.carbon.o dialog.carbon.o ¶
|
|
fromucs.carbon.o ldisc.carbon.o ldiscucs.carbon.o ¶
|
|
localenc.carbon.o logging.carbon.o mac.carbon.o ¶
|
|
macabout.carbon.o macctrls.carbon.o macdlg.carbon.o ¶
|
|
macenc.carbon.o macevlog.carbon.o macmisc.carbon.o ¶
|
|
macnet.carbon.o macstore.carbon.o macterm.carbon.o ¶
|
|
macucs.carbon.o mimeenc.carbon.o minibidi.carbon.o ¶
|
|
misc.carbon.o mtcpnet.carbon.o nocproxy.carbon.o ¶
|
|
otnet.carbon.o pinger.carbon.o pproxy.carbon.o ¶
|
|
proxy.carbon.o raw.carbon.o rlogin.carbon.o sbcs.carbon.o ¶
|
|
sbcsdat.carbon.o settings.carbon.o slookup.carbon.o ¶
|
|
stricmp.carbon.o telnet.carbon.o terminal.carbon.o ¶
|
|
testback.carbon.o timing.carbon.o toucs.carbon.o ¶
|
|
tree234.carbon.o utf8.carbon.o version.carbon.o ¶
|
|
vsnprint.carbon.o wcwidth.carbon.o xenc.carbon.o ¶
|
|
{Libs_Carbon}
|
|
SetFile -a BMi {Targ}
|
|
|
|
mac_res.rsrc Ä ::mac:mac_res.r ::mac:macresid.h ::mac:version.r
|
|
Rez ::mac:mac_res.r -o {Targ} {ROptions}
|
|
|
|
macpgen.rsrc Ä ::mac:macpgen.r ::mac:macpgrid.h ::mac:version.r
|
|
Rez ::mac:macpgen.r -o {Targ} {ROptions}
|
|
|
|
pageant.rsrc Ä ::windows:pageant.rc ::windows:rcstuff.h ¶
|
|
::windows:pageant.ico ::windows:pageants.ico ¶
|
|
::windows:version.rc2 ::windows:pageant.mft
|
|
Rez ::windows:pageant.rc -o {Targ} {ROptions}
|
|
|
|
plink.rsrc Ä ::windows:plink.rc ::windows:rcstuff.h ::windows:putty.ico ¶
|
|
::windows:version.rc2
|
|
Rez ::windows:plink.rc -o {Targ} {ROptions}
|
|
|
|
pscp.rsrc Ä ::windows:pscp.rc ::windows:rcstuff.h ::windows:pscp.ico ¶
|
|
::windows:version.rc2
|
|
Rez ::windows:pscp.rc -o {Targ} {ROptions}
|
|
|
|
psftp.rsrc Ä ::windows:psftp.rc ::windows:rcstuff.h ::windows:pscp.ico ¶
|
|
::windows:version.rc2
|
|
Rez ::windows:psftp.rc -o {Targ} {ROptions}
|
|
|
|
putty.rsrc Ä ::windows:putty.rc ::windows:rcstuff.h ::windows:win_res.rc2 ¶
|
|
::windows:putty.mft ::windows:win_res.h ::windows:putty.ico ¶
|
|
::windows:puttycfg.ico ::windows:version.rc2
|
|
Rez ::windows:putty.rc -o {Targ} {ROptions}
|
|
|
|
puttygen.rsrc Ä ::windows:puttygen.rc ::windows:rcstuff.h ¶
|
|
::windows:puttygen.ico ::windows:version.rc2 ¶
|
|
::windows:puttygen.mft
|
|
Rez ::windows:puttygen.rc -o {Targ} {ROptions}
|
|
|
|
puttytel.rsrc Ä ::windows:puttytel.rc ::windows:rcstuff.h ¶
|
|
::windows:win_res.rc2 ::windows:putty.mft ¶
|
|
::windows:win_res.h ::windows:putty.ico ¶
|
|
::windows:puttycfg.ico ::windows:version.rc2
|
|
Rez ::windows:puttytel.rc -o {Targ} {ROptions}
|
|
|
|
be_all.68k.o Ä ::be_all.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::be_all.c -o {Targ} {COptions_68K}
|
|
|
|
be_all_s.68k.o Ä ::be_all_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::be_all_s.c -o {Targ} {COptions_68K}
|
|
|
|
be_none.68k.o Ä ::be_none.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::be_none.c -o {Targ} {COptions_68K}
|
|
|
|
be_nos_s.68k.o Ä ::be_nos_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::be_nos_s.c -o {Targ} {COptions_68K}
|
|
|
|
be_nossh.68k.o Ä ::be_nossh.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::be_nossh.c -o {Targ} {COptions_68K}
|
|
|
|
cmdgen.68k.o Ä ::cmdgen.c ::putty.h ::ssh.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::cmdgen.c -o {Targ} {COptions_68K}
|
|
|
|
cmdline.68k.o Ä ::cmdline.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::cmdline.c -o {Targ} {COptions_68K}
|
|
|
|
config.68k.o Ä ::config.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::config.c -o {Targ} {COptions_68K}
|
|
|
|
cproxy.68k.o Ä ::cproxy.c ::putty.h ::ssh.h ::network.h ::proxy.h ¶
|
|
::puttyps.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::cproxy.c -o {Targ} {COptions_68K}
|
|
|
|
dialog.68k.o Ä ::dialog.c ::putty.h ::dialog.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::dialog.c -o {Targ} {COptions_68K}
|
|
|
|
fromucs.68k.o Ä ::charset:fromucs.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:fromucs.c -o {Targ} {COptions_68K}
|
|
|
|
gtkcfg.68k.o Ä ::unix:gtkcfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:gtkcfg.c -o {Targ} {COptions_68K}
|
|
|
|
gtkcols.68k.o Ä ::unix:gtkcols.c ::unix:gtkcols.h
|
|
{C_68K} ::unix:gtkcols.c -o {Targ} {COptions_68K}
|
|
|
|
gtkdlg.68k.o Ä ::unix:gtkdlg.c ::unix:gtkcols.h ::putty.h ::storage.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:gtkdlg.c -o {Targ} {COptions_68K}
|
|
|
|
gtkwin.68k.o Ä ::unix:gtkwin.c ::putty.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:gtkwin.c -o {Targ} {COptions_68K}
|
|
|
|
import.68k.o Ä ::import.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ::network.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::import.c -o {Targ} {COptions_68K}
|
|
|
|
int64.68k.o Ä ::int64.c ::int64.h
|
|
{C_68K} ::int64.c -o {Targ} {COptions_68K}
|
|
|
|
ldisc.68k.o Ä ::ldisc.c ::putty.h ::terminal.h ::ldisc.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::ldisc.c -o {Targ} {COptions_68K}
|
|
|
|
ldiscucs.68k.o Ä ::ldiscucs.c ::putty.h ::terminal.h ::ldisc.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::ldiscucs.c -o {Targ} {COptions_68K}
|
|
|
|
localenc.68k.o Ä ::charset:localenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
{C_68K} ::charset:localenc.c -o {Targ} {COptions_68K}
|
|
|
|
logging.68k.o Ä ::logging.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::logging.c -o {Targ} {COptions_68K}
|
|
|
|
mac.68k.o Ä ::mac:mac.c ::mac:macresid.h ::putty.h ::ssh.h ::terminal.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::tree234.h ::charset:charset.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
{C_68K} ::mac:mac.c -o {Targ} {COptions_68K}
|
|
|
|
macabout.68k.o Ä ::mac:macabout.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_68K} ::mac:macabout.c -o {Targ} {COptions_68K}
|
|
|
|
macctrls.68k.o Ä ::mac:macctrls.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_68K} ::mac:macctrls.c -o {Targ} {COptions_68K}
|
|
|
|
macdlg.68k.o Ä ::mac:macdlg.c ::putty.h ::dialog.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::storage.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
{C_68K} ::mac:macdlg.c -o {Targ} {COptions_68K}
|
|
|
|
macenc.68k.o Ä ::charset:macenc.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:macenc.c -o {Targ} {COptions_68K}
|
|
|
|
macevlog.68k.o Ä ::mac:macevlog.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::terminal.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_68K} ::mac:macevlog.c -o {Targ} {COptions_68K}
|
|
|
|
macmisc.68k.o Ä ::mac:macmisc.c ::putty.h ::mac:mac.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
{C_68K} ::mac:macmisc.c -o {Targ} {COptions_68K}
|
|
|
|
macnet.68k.o Ä ::mac:macnet.c ::putty.h ::network.h ::mac:mac.h ::ssh.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
{C_68K} ::mac:macnet.c -o {Targ} {COptions_68K}
|
|
|
|
macnoise.68k.o Ä ::mac:macnoise.c ::putty.h ::ssh.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::mac:macnoise.c -o {Targ} {COptions_68K}
|
|
|
|
macpgen.68k.o Ä ::mac:macpgen.c ::mac:macpgrid.h ::putty.h ::ssh.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
{C_68K} ::mac:macpgen.c -o {Targ} {COptions_68K}
|
|
|
|
macpgkey.68k.o Ä ::mac:macpgkey.c ::putty.h ::mac:mac.h ::mac:macpgrid.h ¶
|
|
::ssh.h ::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h
|
|
{C_68K} ::mac:macpgkey.c -o {Targ} {COptions_68K}
|
|
|
|
macstore.68k.o Ä ::mac:macstore.c ::putty.h ::storage.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_68K} ::mac:macstore.c -o {Targ} {COptions_68K}
|
|
|
|
macterm.68k.o Ä ::mac:macterm.c ::mac:macresid.h ::putty.h ¶
|
|
::charset:charset.h ::mac:mac.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_68K} ::mac:macterm.c -o {Targ} {COptions_68K}
|
|
|
|
macucs.68k.o Ä ::mac:macucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::mac:mac.h ::puttyps.h ::network.h ::tree234.h ¶
|
|
::puttymem.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
{C_68K} ::mac:macucs.c -o {Targ} {COptions_68K}
|
|
|
|
mimeenc.68k.o Ä ::charset:mimeenc.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:mimeenc.c -o {Targ} {COptions_68K}
|
|
|
|
minibidi.68k.o Ä ::minibidi.c ::misc.h ::puttymem.h
|
|
{C_68K} ::minibidi.c -o {Targ} {COptions_68K}
|
|
|
|
misc.68k.o Ä ::misc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::misc.c -o {Targ} {COptions_68K}
|
|
|
|
mtcpnet.68k.o Ä ::mac:mtcpnet.c ::putty.h ::network.h ::mac:mac.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
{C_68K} ::mac:mtcpnet.c -o {Targ} {COptions_68K}
|
|
|
|
nocproxy.68k.o Ä ::nocproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::nocproxy.c -o {Targ} {COptions_68K}
|
|
|
|
notiming.68k.o Ä ::notiming.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::notiming.c -o {Targ} {COptions_68K}
|
|
|
|
osxctrls.68k.o Ä ::macosx:osxctrls.m ::putty.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::macosx:osxctrls.m -o {Targ} {COptions_68K}
|
|
|
|
osxdlg.68k.o Ä ::macosx:osxdlg.m ::putty.h ::storage.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::macosx:osxdlg.m -o {Targ} {COptions_68K}
|
|
|
|
osxmain.68k.o Ä ::macosx:osxmain.m ::putty.h ::macosx:osxclass.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::macosx:osxmain.m -o {Targ} {COptions_68K}
|
|
|
|
osxsel.68k.o Ä ::macosx:osxsel.m ::putty.h ::macosx:osxclass.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::macosx:osxsel.m -o {Targ} {COptions_68K}
|
|
|
|
osxwin.68k.o Ä ::macosx:osxwin.m ::putty.h ::terminal.h ::macosx:osxclass.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::macosx:osxwin.m -o {Targ} {COptions_68K}
|
|
|
|
otnet.68k.o Ä ::mac:otnet.c ::putty.h ::network.h ::mac:mac.h ::puttyps.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
{C_68K} ::mac:otnet.c -o {Targ} {COptions_68K}
|
|
|
|
pinger.68k.o Ä ::pinger.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::pinger.c -o {Targ} {COptions_68K}
|
|
|
|
portfwd.68k.o Ä ::portfwd.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::portfwd.c -o {Targ} {COptions_68K}
|
|
|
|
pproxy.68k.o Ä ::pproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::pproxy.c -o {Targ} {COptions_68K}
|
|
|
|
proxy.68k.o Ä ::proxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::proxy.c -o {Targ} {COptions_68K}
|
|
|
|
pscp.68k.o Ä ::pscp.c ::putty.h ::psftp.h ::ssh.h ::sftp.h ::storage.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::pscp.c -o {Targ} {COptions_68K}
|
|
|
|
psftp.68k.o Ä ::psftp.c ::putty.h ::psftp.h ::storage.h ::ssh.h ::sftp.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::psftp.c -o {Targ} {COptions_68K}
|
|
|
|
raw.68k.o Ä ::raw.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::raw.c -o {Targ} {COptions_68K}
|
|
|
|
rlogin.68k.o Ä ::rlogin.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::rlogin.c -o {Targ} {COptions_68K}
|
|
|
|
sbcs.68k.o Ä ::charset:sbcs.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:sbcs.c -o {Targ} {COptions_68K}
|
|
|
|
sbcsdat.68k.o Ä ::charset:sbcsdat.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:sbcsdat.c -o {Targ} {COptions_68K}
|
|
|
|
sercfg.68k.o Ä ::sercfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::sercfg.c -o {Targ} {COptions_68K}
|
|
|
|
settings.68k.o Ä ::settings.c ::putty.h ::storage.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::settings.c -o {Targ} {COptions_68K}
|
|
|
|
sftp.68k.o Ä ::sftp.c ::misc.h ::int64.h ::tree234.h ::sftp.h ::puttymem.h
|
|
{C_68K} ::sftp.c -o {Targ} {COptions_68K}
|
|
|
|
sizetip.68k.o Ä ::windows:sizetip.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:sizetip.c -o {Targ} {COptions_68K}
|
|
|
|
slookup.68k.o Ä ::charset:slookup.c ::charset:charset.h ::charset:internal.h ¶
|
|
::charset:enum.c ::charset:sbcsdat.c ::charset:utf8.c
|
|
{C_68K} ::charset:slookup.c -o {Targ} {COptions_68K}
|
|
|
|
ssh.68k.o Ä ::ssh.c ::putty.h ::tree234.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::ssh.c -o {Targ} {COptions_68K}
|
|
|
|
sshaes.68k.o Ä ::sshaes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshaes.c -o {Targ} {COptions_68K}
|
|
|
|
ssharcf.68k.o Ä ::ssharcf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::ssharcf.c -o {Targ} {COptions_68K}
|
|
|
|
sshblowf.68k.o Ä ::sshblowf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshblowf.c -o {Targ} {COptions_68K}
|
|
|
|
sshbn.68k.o Ä ::sshbn.c ::misc.h ::ssh.h ::puttymem.h ::network.h ::int64.h
|
|
{C_68K} ::sshbn.c -o {Targ} {COptions_68K}
|
|
|
|
sshcrc.68k.o Ä ::sshcrc.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshcrc.c -o {Targ} {COptions_68K}
|
|
|
|
sshcrcda.68k.o Ä ::sshcrcda.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_68K} ::sshcrcda.c -o {Targ} {COptions_68K}
|
|
|
|
sshdes.68k.o Ä ::sshdes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshdes.c -o {Targ} {COptions_68K}
|
|
|
|
sshdh.68k.o Ä ::sshdh.c ::ssh.h ::puttymem.h ::network.h ::int64.h ::misc.h
|
|
{C_68K} ::sshdh.c -o {Targ} {COptions_68K}
|
|
|
|
sshdss.68k.o Ä ::sshdss.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_68K} ::sshdss.c -o {Targ} {COptions_68K}
|
|
|
|
sshdssg.68k.o Ä ::sshdssg.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_68K} ::sshdssg.c -o {Targ} {COptions_68K}
|
|
|
|
sshmd5.68k.o Ä ::sshmd5.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshmd5.c -o {Targ} {COptions_68K}
|
|
|
|
sshprime.68k.o Ä ::sshprime.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshprime.c -o {Targ} {COptions_68K}
|
|
|
|
sshpubk.68k.o Ä ::sshpubk.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::sshpubk.c -o {Targ} {COptions_68K}
|
|
|
|
sshrand.68k.o Ä ::sshrand.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::sshrand.c -o {Targ} {COptions_68K}
|
|
|
|
sshrsa.68k.o Ä ::sshrsa.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_68K} ::sshrsa.c -o {Targ} {COptions_68K}
|
|
|
|
sshrsag.68k.o Ä ::sshrsag.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshrsag.c -o {Targ} {COptions_68K}
|
|
|
|
sshsh256.68k.o Ä ::sshsh256.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshsh256.c -o {Targ} {COptions_68K}
|
|
|
|
sshsh512.68k.o Ä ::sshsh512.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshsh512.c -o {Targ} {COptions_68K}
|
|
|
|
sshsha.68k.o Ä ::sshsha.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshsha.c -o {Targ} {COptions_68K}
|
|
|
|
sshzlib.68k.o Ä ::sshzlib.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_68K} ::sshzlib.c -o {Targ} {COptions_68K}
|
|
|
|
stricmp.68k.o Ä ::mac:stricmp.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::mac:stricmp.c -o {Targ} {COptions_68K}
|
|
|
|
telnet.68k.o Ä ::telnet.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::telnet.c -o {Targ} {COptions_68K}
|
|
|
|
terminal.68k.o Ä ::terminal.c ::putty.h ::terminal.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::terminal.c -o {Targ} {COptions_68K}
|
|
|
|
testback.68k.o Ä ::testback.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::testback.c -o {Targ} {COptions_68K}
|
|
|
|
time.68k.o Ä ::time.c
|
|
{C_68K} ::time.c -o {Targ} {COptions_68K}
|
|
|
|
timing.68k.o Ä ::timing.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::timing.c -o {Targ} {COptions_68K}
|
|
|
|
toucs.68k.o Ä ::charset:toucs.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:toucs.c -o {Targ} {COptions_68K}
|
|
|
|
tree234.68k.o Ä ::tree234.c ::puttymem.h ::tree234.h
|
|
{C_68K} ::tree234.c -o {Targ} {COptions_68K}
|
|
|
|
utf8.68k.o Ä ::charset:utf8.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:utf8.c -o {Targ} {COptions_68K}
|
|
|
|
ux_x11.68k.o Ä ::unix:ux_x11.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:ux_x11.c -o {Targ} {COptions_68K}
|
|
|
|
uxagentc.68k.o Ä ::unix:uxagentc.c ::putty.h ::misc.h ::tree234.h ¶
|
|
::puttymem.h ::puttyps.h ::network.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxagentc.c -o {Targ} {COptions_68K}
|
|
|
|
uxcfg.68k.o Ä ::unix:uxcfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxcfg.c -o {Targ} {COptions_68K}
|
|
|
|
uxcons.68k.o Ä ::unix:uxcons.c ::putty.h ::storage.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:uxcons.c -o {Targ} {COptions_68K}
|
|
|
|
uxgen.68k.o Ä ::unix:uxgen.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:uxgen.c -o {Targ} {COptions_68K}
|
|
|
|
uxmisc.68k.o Ä ::unix:uxmisc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:uxmisc.c -o {Targ} {COptions_68K}
|
|
|
|
uxnet.68k.o Ä ::unix:uxnet.c ::putty.h ::network.h ::tree234.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxnet.c -o {Targ} {COptions_68K}
|
|
|
|
uxnoise.68k.o Ä ::unix:uxnoise.c ::putty.h ::ssh.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:uxnoise.c -o {Targ} {COptions_68K}
|
|
|
|
uxplink.68k.o Ä ::unix:uxplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxplink.c -o {Targ} {COptions_68K}
|
|
|
|
uxprint.68k.o Ä ::unix:uxprint.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:uxprint.c -o {Targ} {COptions_68K}
|
|
|
|
uxproxy.68k.o Ä ::unix:uxproxy.c ::tree234.h ::putty.h ::network.h ::proxy.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxproxy.c -o {Targ} {COptions_68K}
|
|
|
|
uxpterm.68k.o Ä ::unix:uxpterm.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::unix:uxpterm.c -o {Targ} {COptions_68K}
|
|
|
|
uxpty.68k.o Ä ::unix:uxpty.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxpty.c -o {Targ} {COptions_68K}
|
|
|
|
uxputty.68k.o Ä ::unix:uxputty.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxputty.c -o {Targ} {COptions_68K}
|
|
|
|
uxsel.68k.o Ä ::unix:uxsel.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxsel.c -o {Targ} {COptions_68K}
|
|
|
|
uxser.68k.o Ä ::unix:uxser.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxser.c -o {Targ} {COptions_68K}
|
|
|
|
uxsftp.68k.o Ä ::unix:uxsftp.c ::putty.h ::psftp.h ::int64.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxsftp.c -o {Targ} {COptions_68K}
|
|
|
|
uxsignal.68k.o Ä ::unix:uxsignal.c
|
|
{C_68K} ::unix:uxsignal.c -o {Targ} {COptions_68K}
|
|
|
|
uxstore.68k.o Ä ::unix:uxstore.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::unix:uxstore.c -o {Targ} {COptions_68K}
|
|
|
|
uxucs.68k.o Ä ::unix:uxucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
{C_68K} ::unix:uxucs.c -o {Targ} {COptions_68K}
|
|
|
|
version.68k.o Ä ::version.c
|
|
{C_68K} ::version.c -o {Targ} {COptions_68K}
|
|
|
|
vsnprint.68k.o Ä ::mac:vsnprint.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::mac:vsnprint.c -o {Targ} {COptions_68K}
|
|
|
|
wcwidth.68k.o Ä ::wcwidth.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::wcwidth.c -o {Targ} {COptions_68K}
|
|
|
|
wildcard.68k.o Ä ::wildcard.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::wildcard.c -o {Targ} {COptions_68K}
|
|
|
|
wincfg.68k.o Ä ::windows:wincfg.c ::putty.h ::dialog.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:wincfg.c -o {Targ} {COptions_68K}
|
|
|
|
wincons.68k.o Ä ::windows:wincons.c ::putty.h ::storage.h ::ssh.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::windows:wincons.c -o {Targ} {COptions_68K}
|
|
|
|
winctrls.68k.o Ä ::windows:winctrls.c ::putty.h ::misc.h ::dialog.h ¶
|
|
::puttyps.h ::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winctrls.c -o {Targ} {COptions_68K}
|
|
|
|
windefs.68k.o Ä ::windows:windefs.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:windefs.c -o {Targ} {COptions_68K}
|
|
|
|
windlg.68k.o Ä ::windows:windlg.c ::putty.h ::ssh.h ::windows:win_res.h ¶
|
|
::storage.h ::dialog.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::windows:windlg.c -o {Targ} {COptions_68K}
|
|
|
|
window.68k.o Ä ::windows:window.c ::putty.h ::terminal.h ::storage.h ¶
|
|
::windows:win_res.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:window.c -o {Targ} {COptions_68K}
|
|
|
|
winhandl.68k.o Ä ::windows:winhandl.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winhandl.c -o {Targ} {COptions_68K}
|
|
|
|
winhelp.68k.o Ä ::windows:winhelp.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winhelp.c -o {Targ} {COptions_68K}
|
|
|
|
winmisc.68k.o Ä ::windows:winmisc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winmisc.c -o {Targ} {COptions_68K}
|
|
|
|
winnet.68k.o Ä ::windows:winnet.c ::putty.h ::network.h ::tree234.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winnet.c -o {Targ} {COptions_68K}
|
|
|
|
winnoise.68k.o Ä ::windows:winnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::windows:winnoise.c -o {Targ} {COptions_68K}
|
|
|
|
winpgen.68k.o Ä ::windows:winpgen.c ::putty.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::windows:winpgen.c -o {Targ} {COptions_68K}
|
|
|
|
winpgnt.68k.o Ä ::windows:winpgnt.c ::putty.h ::ssh.h ::misc.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winpgnt.c -o {Targ} {COptions_68K}
|
|
|
|
winpgntc.68k.o Ä ::windows:winpgntc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winpgntc.c -o {Targ} {COptions_68K}
|
|
|
|
winplink.68k.o Ä ::windows:winplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winplink.c -o {Targ} {COptions_68K}
|
|
|
|
winprint.68k.o Ä ::windows:winprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winprint.c -o {Targ} {COptions_68K}
|
|
|
|
winproxy.68k.o Ä ::windows:winproxy.c ::tree234.h ::putty.h ::network.h ¶
|
|
::proxy.h ::puttyps.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winproxy.c -o {Targ} {COptions_68K}
|
|
|
|
winser.68k.o Ä ::windows:winser.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_68K} ::windows:winser.c -o {Targ} {COptions_68K}
|
|
|
|
winsftp.68k.o Ä ::windows:winsftp.c ::putty.h ::psftp.h ::int64.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winsftp.c -o {Targ} {COptions_68K}
|
|
|
|
winstore.68k.o Ä ::windows:winstore.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winstore.c -o {Targ} {COptions_68K}
|
|
|
|
wintime.68k.o Ä ::windows:wintime.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:wintime.c -o {Targ} {COptions_68K}
|
|
|
|
winucs.68k.o Ä ::windows:winucs.c ::putty.h ::terminal.h ::misc.h ¶
|
|
::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winucs.c -o {Targ} {COptions_68K}
|
|
|
|
winutils.68k.o Ä ::windows:winutils.c ::putty.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::windows:winutils.c -o {Targ} {COptions_68K}
|
|
|
|
x11fwd.68k.o Ä ::x11fwd.c ::putty.h ::ssh.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_68K} ::x11fwd.c -o {Targ} {COptions_68K}
|
|
|
|
xenc.68k.o Ä ::charset:xenc.c ::charset:charset.h ::charset:internal.h
|
|
{C_68K} ::charset:xenc.c -o {Targ} {COptions_68K}
|
|
|
|
xkeysym.68k.o Ä ::unix:xkeysym.c ::misc.h ::puttymem.h
|
|
{C_68K} ::unix:xkeysym.c -o {Targ} {COptions_68K}
|
|
|
|
xpmptcfg.68k.o Ä ::unix:xpmptcfg.c
|
|
{C_68K} ::unix:xpmptcfg.c -o {Targ} {COptions_68K}
|
|
|
|
xpmpterm.68k.o Ä ::unix:xpmpterm.c
|
|
{C_68K} ::unix:xpmpterm.c -o {Targ} {COptions_68K}
|
|
|
|
xpmpucfg.68k.o Ä ::unix:xpmpucfg.c
|
|
{C_68K} ::unix:xpmpucfg.c -o {Targ} {COptions_68K}
|
|
|
|
xpmputty.68k.o Ä ::unix:xpmputty.c
|
|
{C_68K} ::unix:xpmputty.c -o {Targ} {COptions_68K}
|
|
|
|
be_all.cfm68k.o Ä ::be_all.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::be_all.c -o {Targ} {COptions_CFM68K}
|
|
|
|
be_all_s.cfm68k.o Ä ::be_all_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::be_all_s.c -o {Targ} {COptions_CFM68K}
|
|
|
|
be_none.cfm68k.o Ä ::be_none.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::be_none.c -o {Targ} {COptions_CFM68K}
|
|
|
|
be_nos_s.cfm68k.o Ä ::be_nos_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::be_nos_s.c -o {Targ} {COptions_CFM68K}
|
|
|
|
be_nossh.cfm68k.o Ä ::be_nossh.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::be_nossh.c -o {Targ} {COptions_CFM68K}
|
|
|
|
cmdgen.cfm68k.o Ä ::cmdgen.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::cmdgen.c -o {Targ} {COptions_CFM68K}
|
|
|
|
cmdline.cfm68k.o Ä ::cmdline.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::cmdline.c -o {Targ} {COptions_CFM68K}
|
|
|
|
config.cfm68k.o Ä ::config.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::config.c -o {Targ} {COptions_CFM68K}
|
|
|
|
cproxy.cfm68k.o Ä ::cproxy.c ::putty.h ::ssh.h ::network.h ::proxy.h ¶
|
|
::puttyps.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::cproxy.c -o {Targ} {COptions_CFM68K}
|
|
|
|
dialog.cfm68k.o Ä ::dialog.c ::putty.h ::dialog.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::dialog.c -o {Targ} {COptions_CFM68K}
|
|
|
|
fromucs.cfm68k.o Ä ::charset:fromucs.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
{C_CFM68K} ::charset:fromucs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
gtkcfg.cfm68k.o Ä ::unix:gtkcfg.c ::putty.h ::dialog.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:gtkcfg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
gtkcols.cfm68k.o Ä ::unix:gtkcols.c ::unix:gtkcols.h
|
|
{C_CFM68K} ::unix:gtkcols.c -o {Targ} {COptions_CFM68K}
|
|
|
|
gtkdlg.cfm68k.o Ä ::unix:gtkdlg.c ::unix:gtkcols.h ::putty.h ::storage.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::unix:gtkdlg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
gtkwin.cfm68k.o Ä ::unix:gtkwin.c ::putty.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:gtkwin.c -o {Targ} {COptions_CFM68K}
|
|
|
|
import.cfm68k.o Ä ::import.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::import.c -o {Targ} {COptions_CFM68K}
|
|
|
|
int64.cfm68k.o Ä ::int64.c ::int64.h
|
|
{C_CFM68K} ::int64.c -o {Targ} {COptions_CFM68K}
|
|
|
|
ldisc.cfm68k.o Ä ::ldisc.c ::putty.h ::terminal.h ::ldisc.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::ldisc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
ldiscucs.cfm68k.o Ä ::ldiscucs.c ::putty.h ::terminal.h ::ldisc.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::ldiscucs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
localenc.cfm68k.o Ä ::charset:localenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
{C_CFM68K} ::charset:localenc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
logging.cfm68k.o Ä ::logging.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::logging.c -o {Targ} {COptions_CFM68K}
|
|
|
|
mac.cfm68k.o Ä ::mac:mac.c ::mac:macresid.h ::putty.h ::ssh.h ::terminal.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::tree234.h ::charset:charset.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:mac.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macabout.cfm68k.o Ä ::mac:macabout.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macabout.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macctrls.cfm68k.o Ä ::mac:macctrls.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macctrls.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macdlg.cfm68k.o Ä ::mac:macdlg.c ::putty.h ::dialog.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::storage.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macdlg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macenc.cfm68k.o Ä ::charset:macenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
{C_CFM68K} ::charset:macenc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macevlog.cfm68k.o Ä ::mac:macevlog.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::terminal.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macevlog.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macmisc.cfm68k.o Ä ::mac:macmisc.c ::putty.h ::mac:mac.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macmisc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macnet.cfm68k.o Ä ::mac:macnet.c ::putty.h ::network.h ::mac:mac.h ::ssh.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macnet.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macnoise.cfm68k.o Ä ::mac:macnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::mac:macnoise.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macpgen.cfm68k.o Ä ::mac:macpgen.c ::mac:macpgrid.h ::putty.h ::ssh.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macpgen.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macpgkey.cfm68k.o Ä ::mac:macpgkey.c ::putty.h ::mac:mac.h ::mac:macpgrid.h ¶
|
|
::ssh.h ::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macpgkey.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macstore.cfm68k.o Ä ::mac:macstore.c ::putty.h ::storage.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macstore.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macterm.cfm68k.o Ä ::mac:macterm.c ::mac:macresid.h ::putty.h ¶
|
|
::charset:charset.h ::mac:mac.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macterm.c -o {Targ} {COptions_CFM68K}
|
|
|
|
macucs.cfm68k.o Ä ::mac:macucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::mac:mac.h ::puttyps.h ::network.h ::tree234.h ¶
|
|
::puttymem.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:macucs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
mimeenc.cfm68k.o Ä ::charset:mimeenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
{C_CFM68K} ::charset:mimeenc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
minibidi.cfm68k.o Ä ::minibidi.c ::misc.h ::puttymem.h
|
|
{C_CFM68K} ::minibidi.c -o {Targ} {COptions_CFM68K}
|
|
|
|
misc.cfm68k.o Ä ::misc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::misc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
mtcpnet.cfm68k.o Ä ::mac:mtcpnet.c ::putty.h ::network.h ::mac:mac.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:mtcpnet.c -o {Targ} {COptions_CFM68K}
|
|
|
|
nocproxy.cfm68k.o Ä ::nocproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::nocproxy.c -o {Targ} {COptions_CFM68K}
|
|
|
|
notiming.cfm68k.o Ä ::notiming.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::notiming.c -o {Targ} {COptions_CFM68K}
|
|
|
|
osxctrls.cfm68k.o Ä ::macosx:osxctrls.m ::putty.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::macosx:osxctrls.m -o {Targ} {COptions_CFM68K}
|
|
|
|
osxdlg.cfm68k.o Ä ::macosx:osxdlg.m ::putty.h ::storage.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::macosx:osxdlg.m -o {Targ} {COptions_CFM68K}
|
|
|
|
osxmain.cfm68k.o Ä ::macosx:osxmain.m ::putty.h ::macosx:osxclass.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::macosx:osxmain.m -o {Targ} {COptions_CFM68K}
|
|
|
|
osxsel.cfm68k.o Ä ::macosx:osxsel.m ::putty.h ::macosx:osxclass.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::macosx:osxsel.m -o {Targ} {COptions_CFM68K}
|
|
|
|
osxwin.cfm68k.o Ä ::macosx:osxwin.m ::putty.h ::terminal.h ¶
|
|
::macosx:osxclass.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::macosx:osxwin.m -o {Targ} {COptions_CFM68K}
|
|
|
|
otnet.cfm68k.o Ä ::mac:otnet.c ::putty.h ::network.h ::mac:mac.h ::puttyps.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
{C_CFM68K} ::mac:otnet.c -o {Targ} {COptions_CFM68K}
|
|
|
|
pinger.cfm68k.o Ä ::pinger.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::pinger.c -o {Targ} {COptions_CFM68K}
|
|
|
|
portfwd.cfm68k.o Ä ::portfwd.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::portfwd.c -o {Targ} {COptions_CFM68K}
|
|
|
|
pproxy.cfm68k.o Ä ::pproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::pproxy.c -o {Targ} {COptions_CFM68K}
|
|
|
|
proxy.cfm68k.o Ä ::proxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::proxy.c -o {Targ} {COptions_CFM68K}
|
|
|
|
pscp.cfm68k.o Ä ::pscp.c ::putty.h ::psftp.h ::ssh.h ::sftp.h ::storage.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::pscp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
psftp.cfm68k.o Ä ::psftp.c ::putty.h ::psftp.h ::storage.h ::ssh.h ::sftp.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::psftp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
raw.cfm68k.o Ä ::raw.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::raw.c -o {Targ} {COptions_CFM68K}
|
|
|
|
rlogin.cfm68k.o Ä ::rlogin.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::rlogin.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sbcs.cfm68k.o Ä ::charset:sbcs.c ::charset:charset.h ::charset:internal.h
|
|
{C_CFM68K} ::charset:sbcs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sbcsdat.cfm68k.o Ä ::charset:sbcsdat.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
{C_CFM68K} ::charset:sbcsdat.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sercfg.cfm68k.o Ä ::sercfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::sercfg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
settings.cfm68k.o Ä ::settings.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::settings.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sftp.cfm68k.o Ä ::sftp.c ::misc.h ::int64.h ::tree234.h ::sftp.h ¶
|
|
::puttymem.h
|
|
{C_CFM68K} ::sftp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sizetip.cfm68k.o Ä ::windows:sizetip.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:sizetip.c -o {Targ} {COptions_CFM68K}
|
|
|
|
slookup.cfm68k.o Ä ::charset:slookup.c ::charset:charset.h ¶
|
|
::charset:internal.h ::charset:enum.c ::charset:sbcsdat.c ¶
|
|
::charset:utf8.c
|
|
{C_CFM68K} ::charset:slookup.c -o {Targ} {COptions_CFM68K}
|
|
|
|
ssh.cfm68k.o Ä ::ssh.c ::putty.h ::tree234.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::ssh.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshaes.cfm68k.o Ä ::sshaes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshaes.c -o {Targ} {COptions_CFM68K}
|
|
|
|
ssharcf.cfm68k.o Ä ::ssharcf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::ssharcf.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshblowf.cfm68k.o Ä ::sshblowf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshblowf.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshbn.cfm68k.o Ä ::sshbn.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_CFM68K} ::sshbn.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshcrc.cfm68k.o Ä ::sshcrc.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshcrc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshcrcda.cfm68k.o Ä ::sshcrcda.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_CFM68K} ::sshcrcda.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshdes.cfm68k.o Ä ::sshdes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshdes.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshdh.cfm68k.o Ä ::sshdh.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshdh.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshdss.cfm68k.o Ä ::sshdss.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_CFM68K} ::sshdss.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshdssg.cfm68k.o Ä ::sshdssg.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_CFM68K} ::sshdssg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshmd5.cfm68k.o Ä ::sshmd5.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshmd5.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshprime.cfm68k.o Ä ::sshprime.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshprime.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshpubk.cfm68k.o Ä ::sshpubk.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::sshpubk.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshrand.cfm68k.o Ä ::sshrand.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::sshrand.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshrsa.cfm68k.o Ä ::sshrsa.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
{C_CFM68K} ::sshrsa.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshrsag.cfm68k.o Ä ::sshrsag.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshrsag.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshsh256.cfm68k.o Ä ::sshsh256.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshsh256.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshsh512.cfm68k.o Ä ::sshsh512.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshsh512.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshsha.cfm68k.o Ä ::sshsha.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshsha.c -o {Targ} {COptions_CFM68K}
|
|
|
|
sshzlib.cfm68k.o Ä ::sshzlib.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
{C_CFM68K} ::sshzlib.c -o {Targ} {COptions_CFM68K}
|
|
|
|
stricmp.cfm68k.o Ä ::mac:stricmp.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::mac:stricmp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
telnet.cfm68k.o Ä ::telnet.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::telnet.c -o {Targ} {COptions_CFM68K}
|
|
|
|
terminal.cfm68k.o Ä ::terminal.c ::putty.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::terminal.c -o {Targ} {COptions_CFM68K}
|
|
|
|
testback.cfm68k.o Ä ::testback.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::testback.c -o {Targ} {COptions_CFM68K}
|
|
|
|
time.cfm68k.o Ä ::time.c
|
|
{C_CFM68K} ::time.c -o {Targ} {COptions_CFM68K}
|
|
|
|
timing.cfm68k.o Ä ::timing.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::timing.c -o {Targ} {COptions_CFM68K}
|
|
|
|
toucs.cfm68k.o Ä ::charset:toucs.c ::charset:charset.h ::charset:internal.h
|
|
{C_CFM68K} ::charset:toucs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
tree234.cfm68k.o Ä ::tree234.c ::puttymem.h ::tree234.h
|
|
{C_CFM68K} ::tree234.c -o {Targ} {COptions_CFM68K}
|
|
|
|
utf8.cfm68k.o Ä ::charset:utf8.c ::charset:charset.h ::charset:internal.h
|
|
{C_CFM68K} ::charset:utf8.c -o {Targ} {COptions_CFM68K}
|
|
|
|
ux_x11.cfm68k.o Ä ::unix:ux_x11.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:ux_x11.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxagentc.cfm68k.o Ä ::unix:uxagentc.c ::putty.h ::misc.h ::tree234.h ¶
|
|
::puttymem.h ::puttyps.h ::network.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxagentc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxcfg.cfm68k.o Ä ::unix:uxcfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxcfg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxcons.cfm68k.o Ä ::unix:uxcons.c ::putty.h ::storage.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::unix:uxcons.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxgen.cfm68k.o Ä ::unix:uxgen.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::unix:uxgen.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxmisc.cfm68k.o Ä ::unix:uxmisc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::unix:uxmisc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxnet.cfm68k.o Ä ::unix:uxnet.c ::putty.h ::network.h ::tree234.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxnet.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxnoise.cfm68k.o Ä ::unix:uxnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::unix:uxnoise.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxplink.cfm68k.o Ä ::unix:uxplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxplink.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxprint.cfm68k.o Ä ::unix:uxprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxprint.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxproxy.cfm68k.o Ä ::unix:uxproxy.c ::tree234.h ::putty.h ::network.h ¶
|
|
::proxy.h ::puttyps.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxproxy.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxpterm.cfm68k.o Ä ::unix:uxpterm.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxpterm.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxpty.cfm68k.o Ä ::unix:uxpty.c ::putty.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxpty.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxputty.cfm68k.o Ä ::unix:uxputty.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxputty.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxsel.cfm68k.o Ä ::unix:uxsel.c ::putty.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxsel.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxser.cfm68k.o Ä ::unix:uxser.c ::putty.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxser.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxsftp.cfm68k.o Ä ::unix:uxsftp.c ::putty.h ::psftp.h ::int64.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxsftp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxsignal.cfm68k.o Ä ::unix:uxsignal.c
|
|
{C_CFM68K} ::unix:uxsignal.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxstore.cfm68k.o Ä ::unix:uxstore.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::unix:uxstore.c -o {Targ} {COptions_CFM68K}
|
|
|
|
uxucs.cfm68k.o Ä ::unix:uxucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
{C_CFM68K} ::unix:uxucs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
version.cfm68k.o Ä ::version.c
|
|
{C_CFM68K} ::version.c -o {Targ} {COptions_CFM68K}
|
|
|
|
vsnprint.cfm68k.o Ä ::mac:vsnprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::mac:vsnprint.c -o {Targ} {COptions_CFM68K}
|
|
|
|
wcwidth.cfm68k.o Ä ::wcwidth.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::wcwidth.c -o {Targ} {COptions_CFM68K}
|
|
|
|
wildcard.cfm68k.o Ä ::wildcard.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::wildcard.c -o {Targ} {COptions_CFM68K}
|
|
|
|
wincfg.cfm68k.o Ä ::windows:wincfg.c ::putty.h ::dialog.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:wincfg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
wincons.cfm68k.o Ä ::windows:wincons.c ::putty.h ::storage.h ::ssh.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::windows:wincons.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winctrls.cfm68k.o Ä ::windows:winctrls.c ::putty.h ::misc.h ::dialog.h ¶
|
|
::puttyps.h ::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winctrls.c -o {Targ} {COptions_CFM68K}
|
|
|
|
windefs.cfm68k.o Ä ::windows:windefs.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:windefs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
windlg.cfm68k.o Ä ::windows:windlg.c ::putty.h ::ssh.h ::windows:win_res.h ¶
|
|
::storage.h ::dialog.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::windows:windlg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
window.cfm68k.o Ä ::windows:window.c ::putty.h ::terminal.h ::storage.h ¶
|
|
::windows:win_res.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:window.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winhandl.cfm68k.o Ä ::windows:winhandl.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winhandl.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winhelp.cfm68k.o Ä ::windows:winhelp.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winhelp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winmisc.cfm68k.o Ä ::windows:winmisc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winmisc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winnet.cfm68k.o Ä ::windows:winnet.c ::putty.h ::network.h ::tree234.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winnet.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winnoise.cfm68k.o Ä ::windows:winnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::windows:winnoise.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winpgen.cfm68k.o Ä ::windows:winpgen.c ::putty.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
{C_CFM68K} ::windows:winpgen.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winpgnt.cfm68k.o Ä ::windows:winpgnt.c ::putty.h ::ssh.h ::misc.h ¶
|
|
::tree234.h ::puttyps.h ::network.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winpgnt.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winpgntc.cfm68k.o Ä ::windows:winpgntc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winpgntc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winplink.cfm68k.o Ä ::windows:winplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winplink.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winprint.cfm68k.o Ä ::windows:winprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winprint.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winproxy.cfm68k.o Ä ::windows:winproxy.c ::tree234.h ::putty.h ::network.h ¶
|
|
::proxy.h ::puttyps.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winproxy.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winser.cfm68k.o Ä ::windows:winser.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winser.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winsftp.cfm68k.o Ä ::windows:winsftp.c ::putty.h ::psftp.h ::int64.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winsftp.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winstore.cfm68k.o Ä ::windows:winstore.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winstore.c -o {Targ} {COptions_CFM68K}
|
|
|
|
wintime.cfm68k.o Ä ::windows:wintime.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:wintime.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winucs.cfm68k.o Ä ::windows:winucs.c ::putty.h ::terminal.h ::misc.h ¶
|
|
::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winucs.c -o {Targ} {COptions_CFM68K}
|
|
|
|
winutils.cfm68k.o Ä ::windows:winutils.c ::putty.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::windows:winutils.c -o {Targ} {COptions_CFM68K}
|
|
|
|
x11fwd.cfm68k.o Ä ::x11fwd.c ::putty.h ::ssh.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
{C_CFM68K} ::x11fwd.c -o {Targ} {COptions_CFM68K}
|
|
|
|
xenc.cfm68k.o Ä ::charset:xenc.c ::charset:charset.h ::charset:internal.h
|
|
{C_CFM68K} ::charset:xenc.c -o {Targ} {COptions_CFM68K}
|
|
|
|
xkeysym.cfm68k.o Ä ::unix:xkeysym.c ::misc.h ::puttymem.h
|
|
{C_CFM68K} ::unix:xkeysym.c -o {Targ} {COptions_CFM68K}
|
|
|
|
xpmptcfg.cfm68k.o Ä ::unix:xpmptcfg.c
|
|
{C_CFM68K} ::unix:xpmptcfg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
xpmpterm.cfm68k.o Ä ::unix:xpmpterm.c
|
|
{C_CFM68K} ::unix:xpmpterm.c -o {Targ} {COptions_CFM68K}
|
|
|
|
xpmpucfg.cfm68k.o Ä ::unix:xpmpucfg.c
|
|
{C_CFM68K} ::unix:xpmpucfg.c -o {Targ} {COptions_CFM68K}
|
|
|
|
xpmputty.cfm68k.o Ä ::unix:xpmputty.c
|
|
{C_CFM68K} ::unix:xpmputty.c -o {Targ} {COptions_CFM68K}
|
|
|
|
be_all.ppc.o Ä ::be_all.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::be_all.c -o {Targ} {COptions_PPC}
|
|
|
|
be_all_s.ppc.o Ä ::be_all_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::be_all_s.c -o {Targ} {COptions_PPC}
|
|
|
|
be_none.ppc.o Ä ::be_none.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::be_none.c -o {Targ} {COptions_PPC}
|
|
|
|
be_nos_s.ppc.o Ä ::be_nos_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::be_nos_s.c -o {Targ} {COptions_PPC}
|
|
|
|
be_nossh.ppc.o Ä ::be_nossh.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::be_nossh.c -o {Targ} {COptions_PPC}
|
|
|
|
cmdgen.ppc.o Ä ::cmdgen.c ::putty.h ::ssh.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::cmdgen.c -o {Targ} {COptions_PPC}
|
|
|
|
cmdline.ppc.o Ä ::cmdline.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::cmdline.c -o {Targ} {COptions_PPC}
|
|
|
|
config.ppc.o Ä ::config.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::config.c -o {Targ} {COptions_PPC}
|
|
|
|
cproxy.ppc.o Ä ::cproxy.c ::putty.h ::ssh.h ::network.h ::proxy.h ¶
|
|
::puttyps.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::cproxy.c -o {Targ} {COptions_PPC}
|
|
|
|
dialog.ppc.o Ä ::dialog.c ::putty.h ::dialog.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::dialog.c -o {Targ} {COptions_PPC}
|
|
|
|
fromucs.ppc.o Ä ::charset:fromucs.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:fromucs.c -o {Targ} {COptions_PPC}
|
|
|
|
gtkcfg.ppc.o Ä ::unix:gtkcfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:gtkcfg.c -o {Targ} {COptions_PPC}
|
|
|
|
gtkcols.ppc.o Ä ::unix:gtkcols.c ::unix:gtkcols.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:gtkcols.c -o {Targ} {COptions_PPC}
|
|
|
|
gtkdlg.ppc.o Ä ::unix:gtkdlg.c ::unix:gtkcols.h ::putty.h ::storage.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:gtkdlg.c -o {Targ} {COptions_PPC}
|
|
|
|
gtkwin.ppc.o Ä ::unix:gtkwin.c ::putty.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:gtkwin.c -o {Targ} {COptions_PPC}
|
|
|
|
import.ppc.o Ä ::import.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ::network.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::import.c -o {Targ} {COptions_PPC}
|
|
|
|
int64.ppc.o Ä ::int64.c ::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::int64.c -o {Targ} {COptions_PPC}
|
|
|
|
ldisc.ppc.o Ä ::ldisc.c ::putty.h ::terminal.h ::ldisc.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::ldisc.c -o {Targ} {COptions_PPC}
|
|
|
|
ldiscucs.ppc.o Ä ::ldiscucs.c ::putty.h ::terminal.h ::ldisc.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::ldiscucs.c -o {Targ} {COptions_PPC}
|
|
|
|
localenc.ppc.o Ä ::charset:localenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:localenc.c -o {Targ} {COptions_PPC}
|
|
|
|
logging.ppc.o Ä ::logging.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::logging.c -o {Targ} {COptions_PPC}
|
|
|
|
mac.ppc.o Ä ::mac:mac.c ::mac:macresid.h ::putty.h ::ssh.h ::terminal.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::tree234.h ::charset:charset.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:mac.c -o {Targ} {COptions_PPC}
|
|
|
|
macabout.ppc.o Ä ::mac:macabout.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macabout.c -o {Targ} {COptions_PPC}
|
|
|
|
macctrls.ppc.o Ä ::mac:macctrls.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macctrls.c -o {Targ} {COptions_PPC}
|
|
|
|
macdlg.ppc.o Ä ::mac:macdlg.c ::putty.h ::dialog.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::storage.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macdlg.c -o {Targ} {COptions_PPC}
|
|
|
|
macenc.ppc.o Ä ::charset:macenc.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:macenc.c -o {Targ} {COptions_PPC}
|
|
|
|
macevlog.ppc.o Ä ::mac:macevlog.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::terminal.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macevlog.c -o {Targ} {COptions_PPC}
|
|
|
|
macmisc.ppc.o Ä ::mac:macmisc.c ::putty.h ::mac:mac.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macmisc.c -o {Targ} {COptions_PPC}
|
|
|
|
macnet.ppc.o Ä ::mac:macnet.c ::putty.h ::network.h ::mac:mac.h ::ssh.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macnet.c -o {Targ} {COptions_PPC}
|
|
|
|
macnoise.ppc.o Ä ::mac:macnoise.c ::putty.h ::ssh.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macnoise.c -o {Targ} {COptions_PPC}
|
|
|
|
macpgen.ppc.o Ä ::mac:macpgen.c ::mac:macpgrid.h ::putty.h ::ssh.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macpgen.c -o {Targ} {COptions_PPC}
|
|
|
|
macpgkey.ppc.o Ä ::mac:macpgkey.c ::putty.h ::mac:mac.h ::mac:macpgrid.h ¶
|
|
::ssh.h ::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macpgkey.c -o {Targ} {COptions_PPC}
|
|
|
|
macstore.ppc.o Ä ::mac:macstore.c ::putty.h ::storage.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macstore.c -o {Targ} {COptions_PPC}
|
|
|
|
macterm.ppc.o Ä ::mac:macterm.c ::mac:macresid.h ::putty.h ¶
|
|
::charset:charset.h ::mac:mac.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macterm.c -o {Targ} {COptions_PPC}
|
|
|
|
macucs.ppc.o Ä ::mac:macucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::mac:mac.h ::puttyps.h ::network.h ::tree234.h ¶
|
|
::puttymem.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:macucs.c -o {Targ} {COptions_PPC}
|
|
|
|
mimeenc.ppc.o Ä ::charset:mimeenc.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:mimeenc.c -o {Targ} {COptions_PPC}
|
|
|
|
minibidi.ppc.o Ä ::minibidi.c ::misc.h ::puttymem.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::minibidi.c -o {Targ} {COptions_PPC}
|
|
|
|
misc.ppc.o Ä ::misc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::misc.c -o {Targ} {COptions_PPC}
|
|
|
|
mtcpnet.ppc.o Ä ::mac:mtcpnet.c ::putty.h ::network.h ::mac:mac.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:mtcpnet.c -o {Targ} {COptions_PPC}
|
|
|
|
nocproxy.ppc.o Ä ::nocproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::nocproxy.c -o {Targ} {COptions_PPC}
|
|
|
|
notiming.ppc.o Ä ::notiming.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::notiming.c -o {Targ} {COptions_PPC}
|
|
|
|
osxctrls.ppc.o Ä ::macosx:osxctrls.m ::putty.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::macosx:osxctrls.m -o {Targ} {COptions_PPC}
|
|
|
|
osxdlg.ppc.o Ä ::macosx:osxdlg.m ::putty.h ::storage.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::macosx:osxdlg.m -o {Targ} {COptions_PPC}
|
|
|
|
osxmain.ppc.o Ä ::macosx:osxmain.m ::putty.h ::macosx:osxclass.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::macosx:osxmain.m -o {Targ} {COptions_PPC}
|
|
|
|
osxsel.ppc.o Ä ::macosx:osxsel.m ::putty.h ::macosx:osxclass.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::macosx:osxsel.m -o {Targ} {COptions_PPC}
|
|
|
|
osxwin.ppc.o Ä ::macosx:osxwin.m ::putty.h ::terminal.h ::macosx:osxclass.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::macosx:osxwin.m -o {Targ} {COptions_PPC}
|
|
|
|
otnet.ppc.o Ä ::mac:otnet.c ::putty.h ::network.h ::mac:mac.h ::puttyps.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:otnet.c -o {Targ} {COptions_PPC}
|
|
|
|
pinger.ppc.o Ä ::pinger.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::pinger.c -o {Targ} {COptions_PPC}
|
|
|
|
portfwd.ppc.o Ä ::portfwd.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::portfwd.c -o {Targ} {COptions_PPC}
|
|
|
|
pproxy.ppc.o Ä ::pproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::pproxy.c -o {Targ} {COptions_PPC}
|
|
|
|
proxy.ppc.o Ä ::proxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::proxy.c -o {Targ} {COptions_PPC}
|
|
|
|
pscp.ppc.o Ä ::pscp.c ::putty.h ::psftp.h ::ssh.h ::sftp.h ::storage.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::pscp.c -o {Targ} {COptions_PPC}
|
|
|
|
psftp.ppc.o Ä ::psftp.c ::putty.h ::psftp.h ::storage.h ::ssh.h ::sftp.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::psftp.c -o {Targ} {COptions_PPC}
|
|
|
|
raw.ppc.o Ä ::raw.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::raw.c -o {Targ} {COptions_PPC}
|
|
|
|
rlogin.ppc.o Ä ::rlogin.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::rlogin.c -o {Targ} {COptions_PPC}
|
|
|
|
sbcs.ppc.o Ä ::charset:sbcs.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:sbcs.c -o {Targ} {COptions_PPC}
|
|
|
|
sbcsdat.ppc.o Ä ::charset:sbcsdat.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:sbcsdat.c -o {Targ} {COptions_PPC}
|
|
|
|
sercfg.ppc.o Ä ::sercfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sercfg.c -o {Targ} {COptions_PPC}
|
|
|
|
settings.ppc.o Ä ::settings.c ::putty.h ::storage.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::settings.c -o {Targ} {COptions_PPC}
|
|
|
|
sftp.ppc.o Ä ::sftp.c ::misc.h ::int64.h ::tree234.h ::sftp.h ::puttymem.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sftp.c -o {Targ} {COptions_PPC}
|
|
|
|
sizetip.ppc.o Ä ::windows:sizetip.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:sizetip.c -o {Targ} {COptions_PPC}
|
|
|
|
slookup.ppc.o Ä ::charset:slookup.c ::charset:charset.h ::charset:internal.h ¶
|
|
::charset:enum.c ::charset:sbcsdat.c ::charset:utf8.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:slookup.c -o {Targ} {COptions_PPC}
|
|
|
|
ssh.ppc.o Ä ::ssh.c ::putty.h ::tree234.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::ssh.c -o {Targ} {COptions_PPC}
|
|
|
|
sshaes.ppc.o Ä ::sshaes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshaes.c -o {Targ} {COptions_PPC}
|
|
|
|
ssharcf.ppc.o Ä ::ssharcf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::ssharcf.c -o {Targ} {COptions_PPC}
|
|
|
|
sshblowf.ppc.o Ä ::sshblowf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshblowf.c -o {Targ} {COptions_PPC}
|
|
|
|
sshbn.ppc.o Ä ::sshbn.c ::misc.h ::ssh.h ::puttymem.h ::network.h ::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshbn.c -o {Targ} {COptions_PPC}
|
|
|
|
sshcrc.ppc.o Ä ::sshcrc.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshcrc.c -o {Targ} {COptions_PPC}
|
|
|
|
sshcrcda.ppc.o Ä ::sshcrcda.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshcrcda.c -o {Targ} {COptions_PPC}
|
|
|
|
sshdes.ppc.o Ä ::sshdes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshdes.c -o {Targ} {COptions_PPC}
|
|
|
|
sshdh.ppc.o Ä ::sshdh.c ::ssh.h ::puttymem.h ::network.h ::int64.h ::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshdh.c -o {Targ} {COptions_PPC}
|
|
|
|
sshdss.ppc.o Ä ::sshdss.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshdss.c -o {Targ} {COptions_PPC}
|
|
|
|
sshdssg.ppc.o Ä ::sshdssg.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshdssg.c -o {Targ} {COptions_PPC}
|
|
|
|
sshmd5.ppc.o Ä ::sshmd5.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshmd5.c -o {Targ} {COptions_PPC}
|
|
|
|
sshprime.ppc.o Ä ::sshprime.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshprime.c -o {Targ} {COptions_PPC}
|
|
|
|
sshpubk.ppc.o Ä ::sshpubk.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshpubk.c -o {Targ} {COptions_PPC}
|
|
|
|
sshrand.ppc.o Ä ::sshrand.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshrand.c -o {Targ} {COptions_PPC}
|
|
|
|
sshrsa.ppc.o Ä ::sshrsa.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshrsa.c -o {Targ} {COptions_PPC}
|
|
|
|
sshrsag.ppc.o Ä ::sshrsag.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshrsag.c -o {Targ} {COptions_PPC}
|
|
|
|
sshsh256.ppc.o Ä ::sshsh256.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshsh256.c -o {Targ} {COptions_PPC}
|
|
|
|
sshsh512.ppc.o Ä ::sshsh512.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshsh512.c -o {Targ} {COptions_PPC}
|
|
|
|
sshsha.ppc.o Ä ::sshsha.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshsha.c -o {Targ} {COptions_PPC}
|
|
|
|
sshzlib.ppc.o Ä ::sshzlib.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::sshzlib.c -o {Targ} {COptions_PPC}
|
|
|
|
stricmp.ppc.o Ä ::mac:stricmp.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:stricmp.c -o {Targ} {COptions_PPC}
|
|
|
|
telnet.ppc.o Ä ::telnet.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::telnet.c -o {Targ} {COptions_PPC}
|
|
|
|
terminal.ppc.o Ä ::terminal.c ::putty.h ::terminal.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::terminal.c -o {Targ} {COptions_PPC}
|
|
|
|
testback.ppc.o Ä ::testback.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::testback.c -o {Targ} {COptions_PPC}
|
|
|
|
time.ppc.o Ä ::time.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::time.c -o {Targ} {COptions_PPC}
|
|
|
|
timing.ppc.o Ä ::timing.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::timing.c -o {Targ} {COptions_PPC}
|
|
|
|
toucs.ppc.o Ä ::charset:toucs.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:toucs.c -o {Targ} {COptions_PPC}
|
|
|
|
tree234.ppc.o Ä ::tree234.c ::puttymem.h ::tree234.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::tree234.c -o {Targ} {COptions_PPC}
|
|
|
|
utf8.ppc.o Ä ::charset:utf8.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:utf8.c -o {Targ} {COptions_PPC}
|
|
|
|
ux_x11.ppc.o Ä ::unix:ux_x11.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:ux_x11.c -o {Targ} {COptions_PPC}
|
|
|
|
uxagentc.ppc.o Ä ::unix:uxagentc.c ::putty.h ::misc.h ::tree234.h ¶
|
|
::puttymem.h ::puttyps.h ::network.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxagentc.c -o {Targ} {COptions_PPC}
|
|
|
|
uxcfg.ppc.o Ä ::unix:uxcfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxcfg.c -o {Targ} {COptions_PPC}
|
|
|
|
uxcons.ppc.o Ä ::unix:uxcons.c ::putty.h ::storage.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxcons.c -o {Targ} {COptions_PPC}
|
|
|
|
uxgen.ppc.o Ä ::unix:uxgen.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxgen.c -o {Targ} {COptions_PPC}
|
|
|
|
uxmisc.ppc.o Ä ::unix:uxmisc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxmisc.c -o {Targ} {COptions_PPC}
|
|
|
|
uxnet.ppc.o Ä ::unix:uxnet.c ::putty.h ::network.h ::tree234.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxnet.c -o {Targ} {COptions_PPC}
|
|
|
|
uxnoise.ppc.o Ä ::unix:uxnoise.c ::putty.h ::ssh.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxnoise.c -o {Targ} {COptions_PPC}
|
|
|
|
uxplink.ppc.o Ä ::unix:uxplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxplink.c -o {Targ} {COptions_PPC}
|
|
|
|
uxprint.ppc.o Ä ::unix:uxprint.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxprint.c -o {Targ} {COptions_PPC}
|
|
|
|
uxproxy.ppc.o Ä ::unix:uxproxy.c ::tree234.h ::putty.h ::network.h ::proxy.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxproxy.c -o {Targ} {COptions_PPC}
|
|
|
|
uxpterm.ppc.o Ä ::unix:uxpterm.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxpterm.c -o {Targ} {COptions_PPC}
|
|
|
|
uxpty.ppc.o Ä ::unix:uxpty.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxpty.c -o {Targ} {COptions_PPC}
|
|
|
|
uxputty.ppc.o Ä ::unix:uxputty.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxputty.c -o {Targ} {COptions_PPC}
|
|
|
|
uxsel.ppc.o Ä ::unix:uxsel.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxsel.c -o {Targ} {COptions_PPC}
|
|
|
|
uxser.ppc.o Ä ::unix:uxser.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxser.c -o {Targ} {COptions_PPC}
|
|
|
|
uxsftp.ppc.o Ä ::unix:uxsftp.c ::putty.h ::psftp.h ::int64.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxsftp.c -o {Targ} {COptions_PPC}
|
|
|
|
uxsignal.ppc.o Ä ::unix:uxsignal.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxsignal.c -o {Targ} {COptions_PPC}
|
|
|
|
uxstore.ppc.o Ä ::unix:uxstore.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxstore.c -o {Targ} {COptions_PPC}
|
|
|
|
uxucs.ppc.o Ä ::unix:uxucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:uxucs.c -o {Targ} {COptions_PPC}
|
|
|
|
version.ppc.o Ä ::version.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::version.c -o {Targ} {COptions_PPC}
|
|
|
|
vsnprint.ppc.o Ä ::mac:vsnprint.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::mac:vsnprint.c -o {Targ} {COptions_PPC}
|
|
|
|
wcwidth.ppc.o Ä ::wcwidth.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::wcwidth.c -o {Targ} {COptions_PPC}
|
|
|
|
wildcard.ppc.o Ä ::wildcard.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::wildcard.c -o {Targ} {COptions_PPC}
|
|
|
|
wincfg.ppc.o Ä ::windows:wincfg.c ::putty.h ::dialog.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:wincfg.c -o {Targ} {COptions_PPC}
|
|
|
|
wincons.ppc.o Ä ::windows:wincons.c ::putty.h ::storage.h ::ssh.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:wincons.c -o {Targ} {COptions_PPC}
|
|
|
|
winctrls.ppc.o Ä ::windows:winctrls.c ::putty.h ::misc.h ::dialog.h ¶
|
|
::puttyps.h ::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winctrls.c -o {Targ} {COptions_PPC}
|
|
|
|
windefs.ppc.o Ä ::windows:windefs.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:windefs.c -o {Targ} {COptions_PPC}
|
|
|
|
windlg.ppc.o Ä ::windows:windlg.c ::putty.h ::ssh.h ::windows:win_res.h ¶
|
|
::storage.h ::dialog.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:windlg.c -o {Targ} {COptions_PPC}
|
|
|
|
window.ppc.o Ä ::windows:window.c ::putty.h ::terminal.h ::storage.h ¶
|
|
::windows:win_res.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:window.c -o {Targ} {COptions_PPC}
|
|
|
|
winhandl.ppc.o Ä ::windows:winhandl.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winhandl.c -o {Targ} {COptions_PPC}
|
|
|
|
winhelp.ppc.o Ä ::windows:winhelp.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winhelp.c -o {Targ} {COptions_PPC}
|
|
|
|
winmisc.ppc.o Ä ::windows:winmisc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winmisc.c -o {Targ} {COptions_PPC}
|
|
|
|
winnet.ppc.o Ä ::windows:winnet.c ::putty.h ::network.h ::tree234.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winnet.c -o {Targ} {COptions_PPC}
|
|
|
|
winnoise.ppc.o Ä ::windows:winnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winnoise.c -o {Targ} {COptions_PPC}
|
|
|
|
winpgen.ppc.o Ä ::windows:winpgen.c ::putty.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winpgen.c -o {Targ} {COptions_PPC}
|
|
|
|
winpgnt.ppc.o Ä ::windows:winpgnt.c ::putty.h ::ssh.h ::misc.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winpgnt.c -o {Targ} {COptions_PPC}
|
|
|
|
winpgntc.ppc.o Ä ::windows:winpgntc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winpgntc.c -o {Targ} {COptions_PPC}
|
|
|
|
winplink.ppc.o Ä ::windows:winplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winplink.c -o {Targ} {COptions_PPC}
|
|
|
|
winprint.ppc.o Ä ::windows:winprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winprint.c -o {Targ} {COptions_PPC}
|
|
|
|
winproxy.ppc.o Ä ::windows:winproxy.c ::tree234.h ::putty.h ::network.h ¶
|
|
::proxy.h ::puttyps.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winproxy.c -o {Targ} {COptions_PPC}
|
|
|
|
winser.ppc.o Ä ::windows:winser.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winser.c -o {Targ} {COptions_PPC}
|
|
|
|
winsftp.ppc.o Ä ::windows:winsftp.c ::putty.h ::psftp.h ::int64.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winsftp.c -o {Targ} {COptions_PPC}
|
|
|
|
winstore.ppc.o Ä ::windows:winstore.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winstore.c -o {Targ} {COptions_PPC}
|
|
|
|
wintime.ppc.o Ä ::windows:wintime.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:wintime.c -o {Targ} {COptions_PPC}
|
|
|
|
winucs.ppc.o Ä ::windows:winucs.c ::putty.h ::terminal.h ::misc.h ¶
|
|
::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winucs.c -o {Targ} {COptions_PPC}
|
|
|
|
winutils.ppc.o Ä ::windows:winutils.c ::putty.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::windows:winutils.c -o {Targ} {COptions_PPC}
|
|
|
|
x11fwd.ppc.o Ä ::x11fwd.c ::putty.h ::ssh.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::x11fwd.c -o {Targ} {COptions_PPC}
|
|
|
|
xenc.ppc.o Ä ::charset:xenc.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::charset:xenc.c -o {Targ} {COptions_PPC}
|
|
|
|
xkeysym.ppc.o Ä ::unix:xkeysym.c ::misc.h ::puttymem.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:xkeysym.c -o {Targ} {COptions_PPC}
|
|
|
|
xpmptcfg.ppc.o Ä ::unix:xpmptcfg.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:xpmptcfg.c -o {Targ} {COptions_PPC}
|
|
|
|
xpmpterm.ppc.o Ä ::unix:xpmpterm.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:xpmpterm.c -o {Targ} {COptions_PPC}
|
|
|
|
xpmpucfg.ppc.o Ä ::unix:xpmpucfg.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:xpmpucfg.c -o {Targ} {COptions_PPC}
|
|
|
|
xpmputty.ppc.o Ä ::unix:xpmputty.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_PPC} ::unix:xpmputty.c -o {Targ} {COptions_PPC}
|
|
|
|
be_all.carbon.o Ä ::be_all.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::be_all.c -o {Targ} {COptions_Carbon}
|
|
|
|
be_all_s.carbon.o Ä ::be_all_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::be_all_s.c -o {Targ} {COptions_Carbon}
|
|
|
|
be_none.carbon.o Ä ::be_none.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::be_none.c -o {Targ} {COptions_Carbon}
|
|
|
|
be_nos_s.carbon.o Ä ::be_nos_s.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::be_nos_s.c -o {Targ} {COptions_Carbon}
|
|
|
|
be_nossh.carbon.o Ä ::be_nossh.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::be_nossh.c -o {Targ} {COptions_Carbon}
|
|
|
|
cmdgen.carbon.o Ä ::cmdgen.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::cmdgen.c -o {Targ} {COptions_Carbon}
|
|
|
|
cmdline.carbon.o Ä ::cmdline.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::cmdline.c -o {Targ} {COptions_Carbon}
|
|
|
|
config.carbon.o Ä ::config.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::config.c -o {Targ} {COptions_Carbon}
|
|
|
|
cproxy.carbon.o Ä ::cproxy.c ::putty.h ::ssh.h ::network.h ::proxy.h ¶
|
|
::puttyps.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::cproxy.c -o {Targ} {COptions_Carbon}
|
|
|
|
dialog.carbon.o Ä ::dialog.c ::putty.h ::dialog.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::dialog.c -o {Targ} {COptions_Carbon}
|
|
|
|
fromucs.carbon.o Ä ::charset:fromucs.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:fromucs.c -o {Targ} {COptions_Carbon}
|
|
|
|
gtkcfg.carbon.o Ä ::unix:gtkcfg.c ::putty.h ::dialog.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:gtkcfg.c -o {Targ} {COptions_Carbon}
|
|
|
|
gtkcols.carbon.o Ä ::unix:gtkcols.c ::unix:gtkcols.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:gtkcols.c -o {Targ} {COptions_Carbon}
|
|
|
|
gtkdlg.carbon.o Ä ::unix:gtkdlg.c ::unix:gtkcols.h ::putty.h ::storage.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:gtkdlg.c -o {Targ} {COptions_Carbon}
|
|
|
|
gtkwin.carbon.o Ä ::unix:gtkwin.c ::putty.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:gtkwin.c -o {Targ} {COptions_Carbon}
|
|
|
|
import.carbon.o Ä ::import.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::import.c -o {Targ} {COptions_Carbon}
|
|
|
|
int64.carbon.o Ä ::int64.c ::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::int64.c -o {Targ} {COptions_Carbon}
|
|
|
|
ldisc.carbon.o Ä ::ldisc.c ::putty.h ::terminal.h ::ldisc.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::ldisc.c -o {Targ} {COptions_Carbon}
|
|
|
|
ldiscucs.carbon.o Ä ::ldiscucs.c ::putty.h ::terminal.h ::ldisc.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::ldiscucs.c -o {Targ} {COptions_Carbon}
|
|
|
|
localenc.carbon.o Ä ::charset:localenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:localenc.c -o {Targ} {COptions_Carbon}
|
|
|
|
logging.carbon.o Ä ::logging.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::logging.c -o {Targ} {COptions_Carbon}
|
|
|
|
mac.carbon.o Ä ::mac:mac.c ::mac:macresid.h ::putty.h ::ssh.h ::terminal.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::tree234.h ::charset:charset.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:mac.c -o {Targ} {COptions_Carbon}
|
|
|
|
macabout.carbon.o Ä ::mac:macabout.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macabout.c -o {Targ} {COptions_Carbon}
|
|
|
|
macctrls.carbon.o Ä ::mac:macctrls.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::dialog.h ::tree234.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macctrls.c -o {Targ} {COptions_Carbon}
|
|
|
|
macdlg.carbon.o Ä ::mac:macdlg.c ::putty.h ::dialog.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::storage.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macdlg.c -o {Targ} {COptions_Carbon}
|
|
|
|
macenc.carbon.o Ä ::charset:macenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:macenc.c -o {Targ} {COptions_Carbon}
|
|
|
|
macevlog.carbon.o Ä ::mac:macevlog.c ::putty.h ::mac:mac.h ::mac:macresid.h ¶
|
|
::terminal.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macevlog.c -o {Targ} {COptions_Carbon}
|
|
|
|
macmisc.carbon.o Ä ::mac:macmisc.c ::putty.h ::mac:mac.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macmisc.c -o {Targ} {COptions_Carbon}
|
|
|
|
macnet.carbon.o Ä ::mac:macnet.c ::putty.h ::network.h ::mac:mac.h ::ssh.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macnet.c -o {Targ} {COptions_Carbon}
|
|
|
|
macnoise.carbon.o Ä ::mac:macnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macnoise.c -o {Targ} {COptions_Carbon}
|
|
|
|
macpgen.carbon.o Ä ::mac:macpgen.c ::mac:macpgrid.h ::putty.h ::ssh.h ¶
|
|
::mac:mac.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::int64.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macpgen.c -o {Targ} {COptions_Carbon}
|
|
|
|
macpgkey.carbon.o Ä ::mac:macpgkey.c ::putty.h ::mac:mac.h ::mac:macpgrid.h ¶
|
|
::ssh.h ::puttyps.h ::network.h ::misc.h ::charset:charset.h ¶
|
|
::tree234.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macpgkey.c -o {Targ} {COptions_Carbon}
|
|
|
|
macstore.carbon.o Ä ::mac:macstore.c ::putty.h ::storage.h ::mac:mac.h ¶
|
|
::mac:macresid.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::charset:charset.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macstore.c -o {Targ} {COptions_Carbon}
|
|
|
|
macterm.carbon.o Ä ::mac:macterm.c ::mac:macresid.h ::putty.h ¶
|
|
::charset:charset.h ::mac:mac.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macterm.c -o {Targ} {COptions_Carbon}
|
|
|
|
macucs.carbon.o Ä ::mac:macucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::mac:mac.h ::puttyps.h ::network.h ::tree234.h ¶
|
|
::puttymem.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:macucs.c -o {Targ} {COptions_Carbon}
|
|
|
|
mimeenc.carbon.o Ä ::charset:mimeenc.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:mimeenc.c -o {Targ} {COptions_Carbon}
|
|
|
|
minibidi.carbon.o Ä ::minibidi.c ::misc.h ::puttymem.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::minibidi.c -o {Targ} {COptions_Carbon}
|
|
|
|
misc.carbon.o Ä ::misc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::misc.c -o {Targ} {COptions_Carbon}
|
|
|
|
mtcpnet.carbon.o Ä ::mac:mtcpnet.c ::putty.h ::network.h ::mac:mac.h ¶
|
|
::puttyps.h ::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:mtcpnet.c -o {Targ} {COptions_Carbon}
|
|
|
|
nocproxy.carbon.o Ä ::nocproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::nocproxy.c -o {Targ} {COptions_Carbon}
|
|
|
|
notiming.carbon.o Ä ::notiming.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::notiming.c -o {Targ} {COptions_Carbon}
|
|
|
|
osxctrls.carbon.o Ä ::macosx:osxctrls.m ::putty.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::macosx:osxctrls.m -o {Targ} {COptions_Carbon}
|
|
|
|
osxdlg.carbon.o Ä ::macosx:osxdlg.m ::putty.h ::storage.h ::dialog.h ¶
|
|
::macosx:osxclass.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::macosx:osxdlg.m -o {Targ} {COptions_Carbon}
|
|
|
|
osxmain.carbon.o Ä ::macosx:osxmain.m ::putty.h ::macosx:osxclass.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::macosx:osxmain.m -o {Targ} {COptions_Carbon}
|
|
|
|
osxsel.carbon.o Ä ::macosx:osxsel.m ::putty.h ::macosx:osxclass.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::macosx:osxsel.m -o {Targ} {COptions_Carbon}
|
|
|
|
osxwin.carbon.o Ä ::macosx:osxwin.m ::putty.h ::terminal.h ¶
|
|
::macosx:osxclass.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::macosx:osxwin.m -o {Targ} {COptions_Carbon}
|
|
|
|
otnet.carbon.o Ä ::mac:otnet.c ::putty.h ::network.h ::mac:mac.h ::puttyps.h ¶
|
|
::misc.h ::charset:charset.h ::tree234.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:otnet.c -o {Targ} {COptions_Carbon}
|
|
|
|
pinger.carbon.o Ä ::pinger.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::pinger.c -o {Targ} {COptions_Carbon}
|
|
|
|
portfwd.carbon.o Ä ::portfwd.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::portfwd.c -o {Targ} {COptions_Carbon}
|
|
|
|
pproxy.carbon.o Ä ::pproxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::pproxy.c -o {Targ} {COptions_Carbon}
|
|
|
|
proxy.carbon.o Ä ::proxy.c ::putty.h ::network.h ::proxy.h ::puttyps.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::proxy.c -o {Targ} {COptions_Carbon}
|
|
|
|
pscp.carbon.o Ä ::pscp.c ::putty.h ::psftp.h ::ssh.h ::sftp.h ::storage.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::pscp.c -o {Targ} {COptions_Carbon}
|
|
|
|
psftp.carbon.o Ä ::psftp.c ::putty.h ::psftp.h ::storage.h ::ssh.h ::sftp.h ¶
|
|
::int64.h ::puttyps.h ::network.h ::misc.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::psftp.c -o {Targ} {COptions_Carbon}
|
|
|
|
raw.carbon.o Ä ::raw.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::raw.c -o {Targ} {COptions_Carbon}
|
|
|
|
rlogin.carbon.o Ä ::rlogin.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::rlogin.c -o {Targ} {COptions_Carbon}
|
|
|
|
sbcs.carbon.o Ä ::charset:sbcs.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:sbcs.c -o {Targ} {COptions_Carbon}
|
|
|
|
sbcsdat.carbon.o Ä ::charset:sbcsdat.c ::charset:charset.h ¶
|
|
::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:sbcsdat.c -o {Targ} {COptions_Carbon}
|
|
|
|
sercfg.carbon.o Ä ::sercfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sercfg.c -o {Targ} {COptions_Carbon}
|
|
|
|
settings.carbon.o Ä ::settings.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::settings.c -o {Targ} {COptions_Carbon}
|
|
|
|
sftp.carbon.o Ä ::sftp.c ::misc.h ::int64.h ::tree234.h ::sftp.h ¶
|
|
::puttymem.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sftp.c -o {Targ} {COptions_Carbon}
|
|
|
|
sizetip.carbon.o Ä ::windows:sizetip.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:sizetip.c -o {Targ} {COptions_Carbon}
|
|
|
|
slookup.carbon.o Ä ::charset:slookup.c ::charset:charset.h ¶
|
|
::charset:internal.h ::charset:enum.c ::charset:sbcsdat.c ¶
|
|
::charset:utf8.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:slookup.c -o {Targ} {COptions_Carbon}
|
|
|
|
ssh.carbon.o Ä ::ssh.c ::putty.h ::tree234.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::ssh.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshaes.carbon.o Ä ::sshaes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshaes.c -o {Targ} {COptions_Carbon}
|
|
|
|
ssharcf.carbon.o Ä ::ssharcf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::ssharcf.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshblowf.carbon.o Ä ::sshblowf.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshblowf.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshbn.carbon.o Ä ::sshbn.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshbn.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshcrc.carbon.o Ä ::sshcrc.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshcrc.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshcrcda.carbon.o Ä ::sshcrcda.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshcrcda.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshdes.carbon.o Ä ::sshdes.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshdes.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshdh.carbon.o Ä ::sshdh.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshdh.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshdss.carbon.o Ä ::sshdss.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshdss.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshdssg.carbon.o Ä ::sshdssg.c ::misc.h ::ssh.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshdssg.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshmd5.carbon.o Ä ::sshmd5.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshmd5.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshprime.carbon.o Ä ::sshprime.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshprime.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshpubk.carbon.o Ä ::sshpubk.c ::putty.h ::ssh.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshpubk.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshrand.carbon.o Ä ::sshrand.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshrand.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshrsa.carbon.o Ä ::sshrsa.c ::ssh.h ::misc.h ::puttymem.h ::network.h ¶
|
|
::int64.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshrsa.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshrsag.carbon.o Ä ::sshrsag.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshrsag.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshsh256.carbon.o Ä ::sshsh256.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshsh256.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshsh512.carbon.o Ä ::sshsh512.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshsh512.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshsha.carbon.o Ä ::sshsha.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshsha.c -o {Targ} {COptions_Carbon}
|
|
|
|
sshzlib.carbon.o Ä ::sshzlib.c ::ssh.h ::puttymem.h ::network.h ::int64.h ¶
|
|
::misc.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::sshzlib.c -o {Targ} {COptions_Carbon}
|
|
|
|
stricmp.carbon.o Ä ::mac:stricmp.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:stricmp.c -o {Targ} {COptions_Carbon}
|
|
|
|
telnet.carbon.o Ä ::telnet.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::telnet.c -o {Targ} {COptions_Carbon}
|
|
|
|
terminal.carbon.o Ä ::terminal.c ::putty.h ::terminal.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::tree234.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::terminal.c -o {Targ} {COptions_Carbon}
|
|
|
|
testback.carbon.o Ä ::testback.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::testback.c -o {Targ} {COptions_Carbon}
|
|
|
|
time.carbon.o Ä ::time.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::time.c -o {Targ} {COptions_Carbon}
|
|
|
|
timing.carbon.o Ä ::timing.c ::putty.h ::tree234.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::timing.c -o {Targ} {COptions_Carbon}
|
|
|
|
toucs.carbon.o Ä ::charset:toucs.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:toucs.c -o {Targ} {COptions_Carbon}
|
|
|
|
tree234.carbon.o Ä ::tree234.c ::puttymem.h ::tree234.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::tree234.c -o {Targ} {COptions_Carbon}
|
|
|
|
utf8.carbon.o Ä ::charset:utf8.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:utf8.c -o {Targ} {COptions_Carbon}
|
|
|
|
ux_x11.carbon.o Ä ::unix:ux_x11.c ::putty.h ::ssh.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::puttymem.h ::int64.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:ux_x11.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxagentc.carbon.o Ä ::unix:uxagentc.c ::putty.h ::misc.h ::tree234.h ¶
|
|
::puttymem.h ::puttyps.h ::network.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxagentc.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxcfg.carbon.o Ä ::unix:uxcfg.c ::putty.h ::dialog.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxcfg.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxcons.carbon.o Ä ::unix:uxcons.c ::putty.h ::storage.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxcons.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxgen.carbon.o Ä ::unix:uxgen.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxgen.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxmisc.carbon.o Ä ::unix:uxmisc.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxmisc.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxnet.carbon.o Ä ::unix:uxnet.c ::putty.h ::network.h ::tree234.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxnet.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxnoise.carbon.o Ä ::unix:uxnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxnoise.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxplink.carbon.o Ä ::unix:uxplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxplink.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxprint.carbon.o Ä ::unix:uxprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxprint.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxproxy.carbon.o Ä ::unix:uxproxy.c ::tree234.h ::putty.h ::network.h ¶
|
|
::proxy.h ::puttyps.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxproxy.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxpterm.carbon.o Ä ::unix:uxpterm.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxpterm.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxpty.carbon.o Ä ::unix:uxpty.c ::putty.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxpty.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxputty.carbon.o Ä ::unix:uxputty.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxputty.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxsel.carbon.o Ä ::unix:uxsel.c ::putty.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxsel.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxser.carbon.o Ä ::unix:uxser.c ::putty.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxser.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxsftp.carbon.o Ä ::unix:uxsftp.c ::putty.h ::psftp.h ::int64.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxsftp.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxsignal.carbon.o Ä ::unix:uxsignal.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxsignal.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxstore.carbon.o Ä ::unix:uxstore.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxstore.c -o {Targ} {COptions_Carbon}
|
|
|
|
uxucs.carbon.o Ä ::unix:uxucs.c ::putty.h ::charset:charset.h ::terminal.h ¶
|
|
::misc.h ::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:uxucs.c -o {Targ} {COptions_Carbon}
|
|
|
|
version.carbon.o Ä ::version.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::version.c -o {Targ} {COptions_Carbon}
|
|
|
|
vsnprint.carbon.o Ä ::mac:vsnprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::mac:vsnprint.c -o {Targ} {COptions_Carbon}
|
|
|
|
wcwidth.carbon.o Ä ::wcwidth.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::wcwidth.c -o {Targ} {COptions_Carbon}
|
|
|
|
wildcard.carbon.o Ä ::wildcard.c ::putty.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::puttymem.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::wildcard.c -o {Targ} {COptions_Carbon}
|
|
|
|
wincfg.carbon.o Ä ::windows:wincfg.c ::putty.h ::dialog.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:wincfg.c -o {Targ} {COptions_Carbon}
|
|
|
|
wincons.carbon.o Ä ::windows:wincons.c ::putty.h ::storage.h ::ssh.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:wincons.c -o {Targ} {COptions_Carbon}
|
|
|
|
winctrls.carbon.o Ä ::windows:winctrls.c ::putty.h ::misc.h ::dialog.h ¶
|
|
::puttyps.h ::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winctrls.c -o {Targ} {COptions_Carbon}
|
|
|
|
windefs.carbon.o Ä ::windows:windefs.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:windefs.c -o {Targ} {COptions_Carbon}
|
|
|
|
windlg.carbon.o Ä ::windows:windlg.c ::putty.h ::ssh.h ::windows:win_res.h ¶
|
|
::storage.h ::dialog.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::puttymem.h ::int64.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:windlg.c -o {Targ} {COptions_Carbon}
|
|
|
|
window.carbon.o Ä ::windows:window.c ::putty.h ::terminal.h ::storage.h ¶
|
|
::windows:win_res.h ::puttyps.h ::network.h ::misc.h ¶
|
|
::tree234.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:window.c -o {Targ} {COptions_Carbon}
|
|
|
|
winhandl.carbon.o Ä ::windows:winhandl.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winhandl.c -o {Targ} {COptions_Carbon}
|
|
|
|
winhelp.carbon.o Ä ::windows:winhelp.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winhelp.c -o {Targ} {COptions_Carbon}
|
|
|
|
winmisc.carbon.o Ä ::windows:winmisc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winmisc.c -o {Targ} {COptions_Carbon}
|
|
|
|
winnet.carbon.o Ä ::windows:winnet.c ::putty.h ::network.h ::tree234.h ¶
|
|
::puttyps.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winnet.c -o {Targ} {COptions_Carbon}
|
|
|
|
winnoise.carbon.o Ä ::windows:winnoise.c ::putty.h ::ssh.h ::storage.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winnoise.c -o {Targ} {COptions_Carbon}
|
|
|
|
winpgen.carbon.o Ä ::windows:winpgen.c ::putty.h ::ssh.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::tree234.h ::windows:winhelp.h ¶
|
|
::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winpgen.c -o {Targ} {COptions_Carbon}
|
|
|
|
winpgnt.carbon.o Ä ::windows:winpgnt.c ::putty.h ::ssh.h ::misc.h ¶
|
|
::tree234.h ::puttyps.h ::network.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winpgnt.c -o {Targ} {COptions_Carbon}
|
|
|
|
winpgntc.carbon.o Ä ::windows:winpgntc.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winpgntc.c -o {Targ} {COptions_Carbon}
|
|
|
|
winplink.carbon.o Ä ::windows:winplink.c ::putty.h ::storage.h ::tree234.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winplink.c -o {Targ} {COptions_Carbon}
|
|
|
|
winprint.carbon.o Ä ::windows:winprint.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winprint.c -o {Targ} {COptions_Carbon}
|
|
|
|
winproxy.carbon.o Ä ::windows:winproxy.c ::tree234.h ::putty.h ::network.h ¶
|
|
::proxy.h ::puttyps.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winproxy.c -o {Targ} {COptions_Carbon}
|
|
|
|
winser.carbon.o Ä ::windows:winser.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winser.c -o {Targ} {COptions_Carbon}
|
|
|
|
winsftp.carbon.o Ä ::windows:winsftp.c ::putty.h ::psftp.h ::int64.h ¶
|
|
::puttyps.h ::network.h ::misc.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::puttymem.h ¶
|
|
::tree234.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winsftp.c -o {Targ} {COptions_Carbon}
|
|
|
|
winstore.carbon.o Ä ::windows:winstore.c ::putty.h ::storage.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winstore.c -o {Targ} {COptions_Carbon}
|
|
|
|
wintime.carbon.o Ä ::windows:wintime.c ::putty.h ::puttyps.h ::network.h ¶
|
|
::misc.h ::windows:winstuff.h ::mac:macstuff.h ¶
|
|
::macosx:osx.h ::unix:unix.h ::puttymem.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:wintime.c -o {Targ} {COptions_Carbon}
|
|
|
|
winucs.carbon.o Ä ::windows:winucs.c ::putty.h ::terminal.h ::misc.h ¶
|
|
::puttyps.h ::network.h ::tree234.h ::puttymem.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winucs.c -o {Targ} {COptions_Carbon}
|
|
|
|
winutils.carbon.o Ä ::windows:winutils.c ::putty.h ::misc.h ::puttyps.h ¶
|
|
::network.h ::puttymem.h ::windows:winstuff.h ¶
|
|
::mac:macstuff.h ::macosx:osx.h ::unix:unix.h ::tree234.h ¶
|
|
::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::windows:winutils.c -o {Targ} {COptions_Carbon}
|
|
|
|
x11fwd.carbon.o Ä ::x11fwd.c ::putty.h ::ssh.h ::tree234.h ::puttyps.h ¶
|
|
::network.h ::misc.h ::puttymem.h ::int64.h ¶
|
|
::windows:winstuff.h ::mac:macstuff.h ::macosx:osx.h ¶
|
|
::unix:unix.h ::windows:winhelp.h ::charset:charset.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::x11fwd.c -o {Targ} {COptions_Carbon}
|
|
|
|
xenc.carbon.o Ä ::charset:xenc.c ::charset:charset.h ::charset:internal.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::charset:xenc.c -o {Targ} {COptions_Carbon}
|
|
|
|
xkeysym.carbon.o Ä ::unix:xkeysym.c ::misc.h ::puttymem.h
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:xkeysym.c -o {Targ} {COptions_Carbon}
|
|
|
|
xpmptcfg.carbon.o Ä ::unix:xpmptcfg.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:xpmptcfg.c -o {Targ} {COptions_Carbon}
|
|
|
|
xpmpterm.carbon.o Ä ::unix:xpmpterm.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:xpmpterm.c -o {Targ} {COptions_Carbon}
|
|
|
|
xpmpucfg.carbon.o Ä ::unix:xpmpucfg.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:xpmpucfg.c -o {Targ} {COptions_Carbon}
|
|
|
|
xpmputty.carbon.o Ä ::unix:xpmputty.c
|
|
echo -n > {Targ}
|
|
setfile -t XCOF {Targ}
|
|
{C_Carbon} ::unix:xpmputty.c -o {Targ} {COptions_Carbon}
|
|
|