mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-25 09:12:24 +00:00
46bfde32e8
with the Unix port and layering a Cocoa GUI on top. The basics all work: there's a configuration panel and a terminal window, the timing interface works and the select interface functions. The same application can run both SSH (or other network) connections and local pty sessions, and multiple sessions in the same process are fully supported. However, it's horribly unfinished in a wide variety of other ways; anyone interested is invited to read README.OSX and wince at the length and content of its `unfinished' list. [originally from svn r5308]
790 lines
41 KiB
Makefile
790 lines
41 KiB
Makefile
# Makefile for putty under Mac OS X.
|
|
#
|
|
# This file was created by `mkfiles.pl' from the `Recipe' file.
|
|
# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.
|
|
#
|
|
# Extra options you can set:
|
|
#
|
|
# - VER=-DSNAPSHOT=1999-01-25
|
|
# Generates executables whose About box report them as being a
|
|
# development snapshot.
|
|
#
|
|
# - VER=-DRELEASE=0.43
|
|
# Generates executables whose About box report them as being a
|
|
# release version.
|
|
#
|
|
# - COMPAT=-DAUTO_WINSOCK
|
|
# Causes PuTTY to assume that <windows.h> includes its own WinSock
|
|
# header file, so that it won't try to include <winsock.h>.
|
|
#
|
|
# - COMPAT=-DWINSOCK_TWO
|
|
# Causes the PuTTY utilities to include <winsock2.h> instead of
|
|
# <winsock.h>, except Plink which _needs_ WinSock 2 so it already
|
|
# does this.
|
|
#
|
|
# - COMPAT=-DNO_SECURITY
|
|
# Disables Pageant's use of <aclapi.h>, which is not available
|
|
# with some development environments (such as older versions of
|
|
# the Cygwin/mingw GNU toolchain). This means that Pageant
|
|
# won't care about the local user ID of processes accessing it; a
|
|
# version of Pageant built with this option will therefore refuse
|
|
# to run under NT-series OSes on security grounds (although it
|
|
# will run fine on Win95-series OSes where there is no access
|
|
# control anyway).
|
|
#
|
|
# - COMPAT=-DNO_MULTIMON
|
|
# Disables PuTTY's use of <multimon.h>, which is not available
|
|
# with some development environments. This means that PuTTY's
|
|
# full-screen mode (configurable to work on Alt-Enter) will
|
|
# not behave usefully in a multi-monitor environment.
|
|
#
|
|
# Note that this definition is always enabled in the Cygwin
|
|
# build, since at the time of writing this <multimon.h> is
|
|
# known not to be available in Cygwin.
|
|
#
|
|
# - COMPAT=-DNO_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=-DMSVC4
|
|
# - RCFL=-DMSVC4
|
|
# Makes a couple of minor changes so that PuTTY compiles using
|
|
# MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
|
|
#
|
|
# - RCFL=-DASCIICTLS
|
|
# Uses ASCII rather than Unicode to specify the tab control in
|
|
# the resource file. Probably most useful when compiling with
|
|
# Cygnus/mingw32, whose resource compiler may have less of a
|
|
# problem with it.
|
|
#
|
|
# - XFLAGS=-DTELNET_DEFAULT
|
|
# Causes PuTTY to default to the Telnet protocol (in the absence
|
|
# of Default Settings and so on to the contrary). Normally PuTTY
|
|
# will default to SSH.
|
|
#
|
|
# - XFLAGS=-DDEBUG
|
|
# Causes PuTTY to enable internal debugging.
|
|
#
|
|
# - XFLAGS=-DMALLOC_LOG
|
|
# Causes PuTTY to emit a file called putty_mem.log, logging every
|
|
# memory allocation and free, so you can track memory leaks.
|
|
#
|
|
# - XFLAGS=-DMINEFIELD
|
|
# 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.
|
|
#
|
|
CC = $(TOOLPATH)gcc
|
|
|
|
CFLAGS = -O2 -Wall -Werror -g -I.././ -I../charset/ -I../windows/ -I../unix/ \
|
|
-I../mac/ -I../macosx/
|
|
MLDFLAGS = -framework Cocoa
|
|
ULDFLAGS =
|
|
all: PuTTY plink pscp psftp puttygen
|
|
CFLAGS += -DMACOSX
|
|
|
|
PuTTY.app:
|
|
mkdir -p $@
|
|
PuTTY.app/Contents: PuTTY.app
|
|
mkdir -p $@
|
|
PuTTY.app/Contents/MacOS: PuTTY.app/Contents
|
|
mkdir -p $@
|
|
PuTTY: PuTTY.app/Contents/MacOS/PuTTY $(PuTTY_extra)
|
|
|
|
PuTTY.app/Contents/MacOS/PuTTY: PuTTY.app/Contents/MacOS be_all.o config.o \
|
|
cproxy.o dialog.o fromucs.o ldisc.o ldiscucs.o localenc.o \
|
|
logging.o macenc.o mimeenc.o minibidi.o misc.o osxctrls.o \
|
|
osxdlg.o osxmain.o osxsel.o osxwin.o pinger.o portfwd.o \
|
|
proxy.o raw.o rlogin.o sbcs.o sbcsdat.o settings.o slookup.o \
|
|
ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \
|
|
sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o \
|
|
sshrsa.o sshsh512.o sshsha.o sshzlib.o telnet.o terminal.o \
|
|
testback.o time.o timing.o toucs.o tree234.o utf8.o ux_x11.o \
|
|
uxagentc.o uxcfg.o uxmisc.o uxnet.o uxnoise.o uxprint.o \
|
|
uxproxy.o uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o \
|
|
version.o wcwidth.o wildcard.o x11fwd.o xenc.o
|
|
$(CC) $(MLDFLAGS) -o $@ be_all.o config.o cproxy.o dialog.o \
|
|
fromucs.o ldisc.o ldiscucs.o localenc.o logging.o macenc.o \
|
|
mimeenc.o minibidi.o misc.o osxctrls.o osxdlg.o osxmain.o \
|
|
osxsel.o osxwin.o pinger.o portfwd.o proxy.o raw.o rlogin.o \
|
|
sbcs.o sbcsdat.o settings.o slookup.o ssh.o sshaes.o \
|
|
sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
|
|
sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
|
|
sshsha.o sshzlib.o telnet.o terminal.o testback.o time.o \
|
|
timing.o toucs.o tree234.o utf8.o ux_x11.o uxagentc.o \
|
|
uxcfg.o uxmisc.o uxnet.o uxnoise.o uxprint.o uxproxy.o \
|
|
uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o version.o \
|
|
wcwidth.o wildcard.o x11fwd.o xenc.o
|
|
|
|
plink: be_all.o cmdline.o cproxy.o ldisc.o logging.o misc.o pinger.o \
|
|
portfwd.o proxy.o raw.o rlogin.o settings.o ssh.o sshaes.o \
|
|
sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
|
|
sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
|
|
sshsha.o sshzlib.o telnet.o time.o timing.o tree234.o \
|
|
ux_x11.o uxagentc.o uxcons.o uxmisc.o uxnet.o uxnoise.o \
|
|
uxplink.o uxproxy.o uxsel.o uxsignal.o uxstore.o version.o \
|
|
wildcard.o x11fwd.o
|
|
$(CC) $(ULDFLAGS) -o $@ be_all.o cmdline.o cproxy.o ldisc.o \
|
|
logging.o misc.o pinger.o portfwd.o proxy.o raw.o rlogin.o \
|
|
settings.o ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o \
|
|
sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
|
|
sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o telnet.o \
|
|
time.o timing.o tree234.o ux_x11.o uxagentc.o uxcons.o \
|
|
uxmisc.o uxnet.o uxnoise.o uxplink.o uxproxy.o uxsel.o \
|
|
uxsignal.o uxstore.o version.o wildcard.o x11fwd.o
|
|
|
|
pscp: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pinger.o \
|
|
portfwd.o proxy.o pscp.o settings.o sftp.o ssh.o sshaes.o \
|
|
sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
|
|
sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
|
|
sshsha.o sshzlib.o time.o timing.o tree234.o uxagentc.o \
|
|
uxcons.o uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o \
|
|
uxsftp.o uxstore.o version.o wildcard.o x11fwd.o
|
|
$(CC) $(ULDFLAGS) -o $@ be_none.o cmdline.o cproxy.o int64.o \
|
|
logging.o misc.o pinger.o portfwd.o proxy.o pscp.o \
|
|
settings.o sftp.o ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o \
|
|
sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
|
|
sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o time.o \
|
|
timing.o tree234.o uxagentc.o uxcons.o uxmisc.o uxnet.o \
|
|
uxnoise.o uxproxy.o uxsel.o uxsftp.o uxstore.o version.o \
|
|
wildcard.o x11fwd.o
|
|
|
|
psftp: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pinger.o \
|
|
portfwd.o proxy.o psftp.o settings.o sftp.o ssh.o sshaes.o \
|
|
sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
|
|
sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
|
|
sshsha.o sshzlib.o time.o timing.o tree234.o uxagentc.o \
|
|
uxcons.o uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o \
|
|
uxsftp.o uxstore.o version.o wildcard.o x11fwd.o
|
|
$(CC) $(ULDFLAGS) -o $@ be_none.o cmdline.o cproxy.o int64.o \
|
|
logging.o misc.o pinger.o portfwd.o proxy.o psftp.o \
|
|
settings.o sftp.o ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o \
|
|
sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
|
|
sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o time.o \
|
|
timing.o tree234.o uxagentc.o uxcons.o uxmisc.o uxnet.o \
|
|
uxnoise.o uxproxy.o uxsel.o uxsftp.o uxstore.o version.o \
|
|
wildcard.o x11fwd.o
|
|
|
|
puttygen: cmdgen.o import.o misc.o notiming.o sshaes.o sshbn.o sshdes.o \
|
|
sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o sshrand.o \
|
|
sshrsa.o sshrsag.o sshsh512.o sshsha.o time.o tree234.o \
|
|
uxcons.o uxgen.o uxmisc.o uxnoise.o uxstore.o version.o
|
|
$(CC) $(ULDFLAGS) -o $@ cmdgen.o import.o misc.o notiming.o sshaes.o \
|
|
sshbn.o sshdes.o sshdss.o sshdssg.o sshmd5.o sshprime.o \
|
|
sshpubk.o sshrand.o sshrsa.o sshrsag.o sshsh512.o sshsha.o \
|
|
time.o tree234.o uxcons.o uxgen.o uxmisc.o uxnoise.o \
|
|
uxstore.o version.o
|
|
|
|
be_all.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
be_none.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
be_nossh.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
cmdgen.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
cmdline.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
config.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
cproxy.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
dialog.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
gtkcfg.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
gtkcols.o: ../unix/gtkcols.c ../unix/gtkcols.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../unix/gtkpanel.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
gtkpanel.o: ../unix/gtkpanel.c ../unix/gtkpanel.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
gtkwin.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
import.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
int64.o: ../int64.c ../int64.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
ldisc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
ldiscucs.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
logging.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
mac.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macabout.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macctrls.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macdlg.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macevlog.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macmisc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macnet.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macnoise.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macpgen.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macpgkey.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macstore.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macterm.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
macucs.o: ../mac/macucs.c ../putty.h ../terminal.h ../misc.h ../mac/mac.h \
|
|
../puttyps.h ../network.h ../tree234.h ../puttymem.h \
|
|
../charset/charset.h ../windows/winstuff.h ../mac/macstuff.h \
|
|
../macosx/osx.h ../unix/unix.h ../windows/winhelp.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
minibidi.o: ../minibidi.c ../misc.h ../puttymem.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
misc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
mtcpnet.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
nocproxy.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
notiming.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
osxctrls.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
|
|
$(CC) -x objective-c $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
osxdlg.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
|
|
$(CC) -x objective-c $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
osxmain.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
|
|
$(CC) -x objective-c $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
osxsel.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
|
|
$(CC) -x objective-c $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
osxwin.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
|
|
$(CC) -x objective-c $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
otnet.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
pinger.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
portfwd.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
pproxy.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
proxy.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
psftp.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
raw.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
rlogin.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
settings.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sftp.o: ../sftp.c ../misc.h ../int64.h ../tree234.h ../sftp.h ../puttymem.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sizetip.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \
|
|
../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
ssh.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshaes.o: ../sshaes.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshblowf.o: ../sshblowf.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshbn.o: ../sshbn.c ../misc.h ../ssh.h ../puttymem.h ../network.h ../int64.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../puttymem.h ../network.h \
|
|
../int64.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshdes.o: ../sshdes.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshdh.o: ../sshdh.c ../ssh.h ../puttymem.h ../network.h ../int64.h ../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshdss.o: ../sshdss.c ../ssh.h ../misc.h ../puttymem.h ../network.h \
|
|
../int64.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../puttymem.h ../network.h \
|
|
../int64.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshprime.o: ../sshprime.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshpubk.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshrand.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshrsa.o: ../sshrsa.c ../ssh.h ../misc.h ../puttymem.h ../network.h \
|
|
../int64.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshrsag.o: ../sshrsag.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
sshzlib.o: ../sshzlib.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
|
|
../misc.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
stricmp.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
telnet.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
terminal.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
testback.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
time.o: ../time.c
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
timing.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
tree234.o: ../tree234.c ../puttymem.h ../tree234.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
ux_x11.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxagentc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxcfg.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxcons.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxgen.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxmisc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxnet.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxnoise.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxplink.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxprint.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxproxy.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxpterm.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxpty.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxputty.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxsel.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxsftp.o: ../unix/uxsftp.c ../putty.h ../psftp.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxsignal.o: ../unix/uxsignal.c
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxstore.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
uxucs.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
version.o: ../version.c
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
vsnprint.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
wcwidth.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
wildcard.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
wincfg.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
wincons.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winctrls.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
windefs.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
windlg.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
window.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winmisc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winnet.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winnoise.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winpgen.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winpgnt.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winpgntc.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winplink.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winprint.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winstore.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
wintime.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winucs.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
winutils.o: ../windows/winutils.c ../misc.h ../puttymem.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
x11fwd.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
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
xkeysym.o: ../unix/xkeysym.c ../misc.h ../puttymem.h
|
|
$(CC) $(COMPAT) $(FWHACK) $(XFLAGS) $(CFLAGS) -c $<
|
|
|
|
clean:
|
|
rm -f *.o *.dmg
|
|
rm -rf *.app
|