~ubuntu-branches/debian/squeeze/putty/squeeze

« back to all changes in this revision

Viewing changes to unix/Makefile.gtk

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2008-05-28 09:28:32 UTC
  • mfrom: (4.1.4 hardy)
  • Revision ID: james.westby@ubuntu.com-20080528092832-88epkb3d4s1zsw61
Tags: 0.60-3
* Move putty to Applications/Network/Communication menu sub-section.
* Use dh_desktop.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
#
6
6
# Extra options you can set:
7
7
#
8
 
#  - VER=-DSNAPSHOT=1999-01-25
 
8
#  - VER="-DSNAPSHOT=1999-01-25 -DSVN_REV=1234"
9
9
#      Generates executables whose About box report them as being a
10
 
#      development snapshot.
 
10
#      development snapshot. SVN_REV is a Subversion revision number.
11
11
#
12
12
#  - VER=-DRELEASE=0.43
13
13
#      Generates executables whose About box report them as being a
14
14
#      release version.
15
15
#
16
 
#  - COMPAT=-DAUTO_WINSOCK
 
16
#  - COMPAT=-DAUTO_WINSOCK (Windows only)
17
17
#      Causes PuTTY to assume that <windows.h> includes its own WinSock
18
18
#      header file, so that it won't try to include <winsock.h>.
19
19
#
20
 
#  - COMPAT=-DWINSOCK_TWO
 
20
#  - COMPAT=-DWINSOCK_TWO (Windows only)
21
21
#      Causes the PuTTY utilities to include <winsock2.h> instead of
22
22
#      <winsock.h>, except Plink which _needs_ WinSock 2 so it already
23
23
#      does this.
24
24
#
25
 
#  - COMPAT=-DNO_SECURITY
 
25
#  - COMPAT=-DNO_SECURITY (Windows only)
26
26
#      Disables Pageant's use of <aclapi.h>, which is not available
27
27
#      with some development environments (such as older versions of
28
28
#      the Cygwin/mingw GNU toolchain). This means that Pageant
32
32
#      will run fine on Win95-series OSes where there is no access
33
33
#      control anyway).
34
34
#
35
 
#  - COMPAT=-DNO_MULTIMON
 
35
#  - COMPAT=-DNO_MULTIMON (Windows only)
36
36
#      Disables PuTTY's use of <multimon.h>, which is not available
37
37
#      with some development environments. This means that PuTTY's
38
38
#      full-screen mode (configurable to work on Alt-Enter) will
42
42
#      build, since at the time of writing this <multimon.h> is
43
43
#      known not to be available in Cygwin.
44
44
#
 
45
#  - COMPAT=-DNO_HTMLHELP (Windows only)
 
46
#      Disables PuTTY's use of <htmlhelp.h>, which is not available
 
47
#      with some development environments. The resulting binary
 
48
#      will only look for an old-style WinHelp file (.HLP/.CNT), and
 
49
#      will ignore any .CHM file.
 
50
#
 
51
#      Note that this definition is always enabled in the Cygwin
 
52
#      build, since at the time of writing this <htmlhelp.h> is
 
53
#      known not to be available in Cygwin (although you can use
 
54
#      the htmlhelp.h supplied with HTML Help Workshop).
 
55
#
 
56
#  - RCFL=-DNO_MANIFESTS (Windows only)
 
57
#      Disables inclusion of XML application manifests in the PuTTY
 
58
#      binaries. This may be necessary to build for 64-bit Windows;
 
59
#      the manifests are only included to use the XP GUI style on
 
60
#      Windows XP, and the architecture tags are a lie on 64-bit.
 
61
#
45
62
#  - COMPAT=-DNO_IPV6
46
63
#      Disables PuTTY's ability to make IPv6 connections, enabling
47
64
#      it to compile under development environments which do not
48
65
#      support IPv6 in their header files.
49
66
#
50
 
#  - COMPAT=-DMSVC4
 
67
#  - COMPAT=-DMSVC4 (Windows only)
51
68
#  - RCFL=-DMSVC4
52
69
#      Makes a couple of minor changes so that PuTTY compiles using
53
 
#      MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
 
70
#      MSVC 4. You will also need -DNO_SECURITY and -DNO_MULTIMON.
54
71
#
55
 
#  - RCFL=-DASCIICTLS
 
72
#  - RCFL=-DASCIICTLS (Windows only)
56
73
#      Uses ASCII rather than Unicode to specify the tab control in
57
74
#      the resource file. Probably most useful when compiling with
58
75
#      Cygnus/mingw32, whose resource compiler may have less of a
70
87
#      Causes PuTTY to emit a file called putty_mem.log, logging every
71
88
#      memory allocation and free, so you can track memory leaks.
72
89
#
73
 
#  - XFLAGS=-DMINEFIELD
 
90
#  - XFLAGS=-DMINEFIELD (Windows only)
74
91
#      Causes PuTTY to use a custom memory allocator, similar in
75
92
#      concept to Electric Fence, in place of regular malloc(). Wastes
76
93
#      huge amounts of RAM, but should cause heap-corruption bugs to
83
100
CC = $(TOOLPATH)cc
84
101
 
85
102
CFLAGS = -O2 -Wall -Werror -g -I.././ -I../charset/ -I../windows/ -I../unix/ \
86
 
                -I../mac/ -I../macosx/ `gtk-config --cflags`
87
 
XLDFLAGS = `gtk-config --libs`
88
 
ULDFLAGS =#
 
103
                -I../mac/ -I../macosx/ `gtk-config --cflags` -D _FILE_OFFSET_BITS=64
 
104
XLDFLAGS = $(LDFLAGS) `gtk-config --libs`
 
105
ULDFLAGS = $(LDFLAGS)
89
106
INSTALL=install
90
107
INSTALL_PROGRAM=$(INSTALL)
91
108
INSTALL_DATA=$(INSTALL)
101
118
 
102
119
all: plink pscp psftp pterm putty puttygen puttytel
103
120
 
104
 
plink: be_all.o cmdline.o cproxy.o ldisc.o logging.o misc.o pinger.o \
 
121
plink: be_all_s.o cmdline.o cproxy.o ldisc.o logging.o misc.o pinger.o \
105
122
                portfwd.o proxy.o raw.o rlogin.o settings.o ssh.o sshaes.o \
106
 
                sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
107
 
                sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
108
 
                sshsha.o sshzlib.o telnet.o time.o timing.o tree234.o \
109
 
                ux_x11.o uxagentc.o uxcons.o uxmisc.o uxnet.o uxnoise.o \
110
 
                uxplink.o uxproxy.o uxsel.o uxsignal.o uxstore.o version.o \
111
 
                wildcard.o x11fwd.o
112
 
        $(CC) $(ULDFLAGS) -o $@ be_all.o cmdline.o cproxy.o ldisc.o \
113
 
                logging.o misc.o pinger.o portfwd.o proxy.o raw.o rlogin.o \
114
 
                settings.o ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o \
115
 
                sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
116
 
                sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o telnet.o \
 
123
                ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o \
 
124
                sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o \
 
125
                sshsh256.o sshsh512.o sshsha.o sshzlib.o telnet.o time.o \
 
126
                timing.o tree234.o ux_x11.o uxagentc.o uxcons.o uxmisc.o \
 
127
                uxnet.o uxnoise.o uxplink.o uxproxy.o uxsel.o uxser.o \
 
128
                uxsignal.o uxstore.o version.o wildcard.o x11fwd.o
 
129
        $(CC) -o $@ be_all_s.o cmdline.o cproxy.o ldisc.o logging.o misc.o \
 
130
                pinger.o portfwd.o proxy.o raw.o rlogin.o settings.o ssh.o \
 
131
                sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \
 
132
                sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o \
 
133
                sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o telnet.o \
117
134
                time.o timing.o tree234.o ux_x11.o uxagentc.o uxcons.o \
118
135
                uxmisc.o uxnet.o uxnoise.o uxplink.o uxproxy.o uxsel.o \
119
 
                uxsignal.o uxstore.o version.o wildcard.o x11fwd.o 
 
136
                uxser.o uxsignal.o uxstore.o version.o wildcard.o x11fwd.o \
 
137
                $(ULDFLAGS) 
120
138
 
121
139
pscp: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pinger.o \
122
140
                portfwd.o proxy.o pscp.o settings.o sftp.o ssh.o sshaes.o \
123
 
                sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
124
 
                sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
125
 
                sshsha.o sshzlib.o time.o timing.o tree234.o uxagentc.o \
126
 
                uxcons.o uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o \
127
 
                uxsftp.o uxstore.o version.o wildcard.o x11fwd.o
128
 
        $(CC) $(ULDFLAGS) -o $@ be_none.o cmdline.o cproxy.o int64.o \
129
 
                logging.o misc.o pinger.o portfwd.o proxy.o pscp.o \
130
 
                settings.o sftp.o ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o \
131
 
                sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
132
 
                sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o time.o \
 
141
                ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o \
 
142
                sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o \
 
143
                sshsh256.o sshsh512.o sshsha.o sshzlib.o time.o timing.o \
 
144
                tree234.o uxagentc.o uxcons.o uxmisc.o uxnet.o uxnoise.o \
 
145
                uxproxy.o uxsel.o uxsftp.o uxstore.o version.o wildcard.o \
 
146
                x11fwd.o
 
147
        $(CC) -o $@ be_none.o cmdline.o cproxy.o int64.o logging.o misc.o \
 
148
                pinger.o portfwd.o proxy.o pscp.o settings.o sftp.o ssh.o \
 
149
                sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \
 
150
                sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o \
 
151
                sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o time.o \
133
152
                timing.o tree234.o uxagentc.o uxcons.o uxmisc.o uxnet.o \
134
153
                uxnoise.o uxproxy.o uxsel.o uxsftp.o uxstore.o version.o \
135
 
                wildcard.o x11fwd.o 
 
154
                wildcard.o x11fwd.o $(ULDFLAGS) 
136
155
 
137
156
psftp: be_none.o cmdline.o cproxy.o int64.o logging.o misc.o pinger.o \
138
157
                portfwd.o proxy.o psftp.o settings.o sftp.o ssh.o sshaes.o \
139
 
                sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o \
140
 
                sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh512.o \
141
 
                sshsha.o sshzlib.o time.o timing.o tree234.o uxagentc.o \
142
 
                uxcons.o uxmisc.o uxnet.o uxnoise.o uxproxy.o uxsel.o \
143
 
                uxsftp.o uxstore.o version.o wildcard.o x11fwd.o
144
 
        $(CC) $(ULDFLAGS) -o $@ be_none.o cmdline.o cproxy.o int64.o \
145
 
                logging.o misc.o pinger.o portfwd.o proxy.o psftp.o \
146
 
                settings.o sftp.o ssh.o sshaes.o sshblowf.o sshbn.o sshcrc.o \
147
 
                sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o \
148
 
                sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o time.o \
 
158
                ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o \
 
159
                sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o \
 
160
                sshsh256.o sshsh512.o sshsha.o sshzlib.o time.o timing.o \
 
161
                tree234.o uxagentc.o uxcons.o uxmisc.o uxnet.o uxnoise.o \
 
162
                uxproxy.o uxsel.o uxsftp.o uxstore.o version.o wildcard.o \
 
163
                x11fwd.o
 
164
        $(CC) -o $@ be_none.o cmdline.o cproxy.o int64.o logging.o misc.o \
 
165
                pinger.o portfwd.o proxy.o psftp.o settings.o sftp.o ssh.o \
 
166
                sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \
 
167
                sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o \
 
168
                sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o time.o \
149
169
                timing.o tree234.o uxagentc.o uxcons.o uxmisc.o uxnet.o \
150
170
                uxnoise.o uxproxy.o uxsel.o uxsftp.o uxstore.o version.o \
151
 
                wildcard.o x11fwd.o 
 
171
                wildcard.o x11fwd.o $(ULDFLAGS) 
152
172
 
153
173
pterm: be_none.o cmdline.o config.o dialog.o fromucs.o gtkcfg.o gtkcols.o \
154
 
                gtkdlg.o gtkpanel.o gtkwin.o ldisc.o ldiscucs.o localenc.o \
155
 
                logging.o macenc.o mimeenc.o minibidi.o misc.o nocproxy.o \
156
 
                sbcs.o sbcsdat.o settings.o slookup.o terminal.o time.o \
 
174
                gtkdlg.o gtkwin.o ldisc.o ldiscucs.o localenc.o logging.o \
 
175
                macenc.o mimeenc.o minibidi.o misc.o nocproxy.o sbcs.o \
 
176
                sbcsdat.o sercfg.o settings.o slookup.o terminal.o time.o \
157
177
                timing.o toucs.o tree234.o utf8.o uxcfg.o uxmisc.o uxprint.o \
158
178
                uxpterm.o uxpty.o uxsel.o uxsignal.o uxstore.o uxucs.o \
159
 
                version.o wcwidth.o xenc.o xkeysym.o
160
 
        $(CC) $(XLDFLAGS) -o $@ be_none.o cmdline.o config.o dialog.o \
161
 
                fromucs.o gtkcfg.o gtkcols.o gtkdlg.o gtkpanel.o gtkwin.o \
162
 
                ldisc.o ldiscucs.o localenc.o logging.o macenc.o mimeenc.o \
163
 
                minibidi.o misc.o nocproxy.o sbcs.o sbcsdat.o settings.o \
164
 
                slookup.o terminal.o time.o timing.o toucs.o tree234.o \
165
 
                utf8.o uxcfg.o uxmisc.o uxprint.o uxpterm.o uxpty.o uxsel.o \
166
 
                uxsignal.o uxstore.o uxucs.o version.o wcwidth.o xenc.o \
167
 
                xkeysym.o 
 
179
                version.o wcwidth.o xenc.o xkeysym.o xpmptcfg.o xpmpterm.o
 
180
        $(CC) -o $@ be_none.o cmdline.o config.o dialog.o fromucs.o gtkcfg.o \
 
181
                gtkcols.o gtkdlg.o gtkwin.o ldisc.o ldiscucs.o localenc.o \
 
182
                logging.o macenc.o mimeenc.o minibidi.o misc.o nocproxy.o \
 
183
                sbcs.o sbcsdat.o sercfg.o settings.o slookup.o terminal.o \
 
184
                time.o timing.o toucs.o tree234.o utf8.o uxcfg.o uxmisc.o \
 
185
                uxprint.o uxpterm.o uxpty.o uxsel.o uxsignal.o uxstore.o \
 
186
                uxucs.o version.o wcwidth.o xenc.o xkeysym.o xpmptcfg.o \
 
187
                xpmpterm.o $(XLDFLAGS) 
168
188
 
169
 
putty: be_all.o cmdline.o config.o cproxy.o dialog.o fromucs.o gtkcfg.o \
170
 
                gtkcols.o gtkdlg.o gtkpanel.o gtkwin.o ldisc.o ldiscucs.o \
171
 
                localenc.o logging.o macenc.o mimeenc.o minibidi.o misc.o \
172
 
                pinger.o portfwd.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o \
173
 
                settings.o slookup.o ssh.o sshaes.o sshblowf.o sshbn.o \
174
 
                sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o sshmd5.o \
175
 
                sshpubk.o sshrand.o sshrsa.o sshsh512.o sshsha.o sshzlib.o \
176
 
                telnet.o terminal.o time.o timing.o toucs.o tree234.o utf8.o \
177
 
                ux_x11.o uxagentc.o uxcfg.o uxmisc.o uxnet.o uxnoise.o \
178
 
                uxprint.o uxproxy.o uxputty.o uxsel.o uxsignal.o uxstore.o \
 
189
putty: be_all_s.o cmdline.o config.o cproxy.o dialog.o fromucs.o gtkcfg.o \
 
190
                gtkcols.o gtkdlg.o gtkwin.o ldisc.o ldiscucs.o localenc.o \
 
191
                logging.o macenc.o mimeenc.o minibidi.o misc.o pinger.o \
 
192
                portfwd.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sercfg.o \
 
193
                settings.o slookup.o ssh.o sshaes.o ssharcf.o sshblowf.o \
 
194
                sshbn.o sshcrc.o sshcrcda.o sshdes.o sshdh.o sshdss.o \
 
195
                sshmd5.o sshpubk.o sshrand.o sshrsa.o sshsh256.o sshsh512.o \
 
196
                sshsha.o sshzlib.o telnet.o terminal.o time.o timing.o \
 
197
                toucs.o tree234.o utf8.o ux_x11.o uxagentc.o uxcfg.o \
 
198
                uxmisc.o uxnet.o uxnoise.o uxprint.o uxproxy.o uxputty.o \
 
199
                uxsel.o uxser.o uxsignal.o uxstore.o uxucs.o version.o \
 
200
                wcwidth.o wildcard.o x11fwd.o xenc.o xkeysym.o xpmpucfg.o \
 
201
                xpmputty.o
 
202
        $(CC) -o $@ be_all_s.o cmdline.o config.o cproxy.o dialog.o \
 
203
                fromucs.o gtkcfg.o gtkcols.o gtkdlg.o gtkwin.o ldisc.o \
 
204
                ldiscucs.o localenc.o logging.o macenc.o mimeenc.o \
 
205
                minibidi.o misc.o pinger.o portfwd.o proxy.o raw.o rlogin.o \
 
206
                sbcs.o sbcsdat.o sercfg.o settings.o slookup.o ssh.o \
 
207
                sshaes.o ssharcf.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o \
 
208
                sshdes.o sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o \
 
209
                sshrsa.o sshsh256.o sshsh512.o sshsha.o sshzlib.o telnet.o \
 
210
                terminal.o time.o timing.o toucs.o tree234.o utf8.o ux_x11.o \
 
211
                uxagentc.o uxcfg.o uxmisc.o uxnet.o uxnoise.o uxprint.o \
 
212
                uxproxy.o uxputty.o uxsel.o uxser.o uxsignal.o uxstore.o \
179
213
                uxucs.o version.o wcwidth.o wildcard.o x11fwd.o xenc.o \
180
 
                xkeysym.o
181
 
        $(CC) $(XLDFLAGS) -o $@ be_all.o cmdline.o config.o cproxy.o \
182
 
                dialog.o fromucs.o gtkcfg.o gtkcols.o gtkdlg.o gtkpanel.o \
183
 
                gtkwin.o ldisc.o ldiscucs.o localenc.o logging.o macenc.o \
184
 
                mimeenc.o minibidi.o misc.o pinger.o portfwd.o proxy.o raw.o \
185
 
                rlogin.o sbcs.o sbcsdat.o settings.o slookup.o ssh.o \
186
 
                sshaes.o sshblowf.o sshbn.o sshcrc.o sshcrcda.o sshdes.o \
187
 
                sshdh.o sshdss.o sshmd5.o sshpubk.o sshrand.o sshrsa.o \
188
 
                sshsh512.o sshsha.o sshzlib.o telnet.o terminal.o time.o \
189
 
                timing.o toucs.o tree234.o utf8.o ux_x11.o uxagentc.o \
190
 
                uxcfg.o uxmisc.o uxnet.o uxnoise.o uxprint.o uxproxy.o \
191
 
                uxputty.o uxsel.o uxsignal.o uxstore.o uxucs.o version.o \
192
 
                wcwidth.o wildcard.o x11fwd.o xenc.o xkeysym.o 
 
214
                xkeysym.o xpmpucfg.o xpmputty.o $(XLDFLAGS) 
193
215
 
194
216
puttygen: cmdgen.o import.o misc.o notiming.o sshaes.o sshbn.o sshdes.o \
195
217
                sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o sshrand.o \
196
218
                sshrsa.o sshrsag.o sshsh512.o sshsha.o time.o tree234.o \
197
219
                uxcons.o uxgen.o uxmisc.o uxnoise.o uxstore.o version.o
198
 
        $(CC) $(ULDFLAGS) -o $@ cmdgen.o import.o misc.o notiming.o sshaes.o \
199
 
                sshbn.o sshdes.o sshdss.o sshdssg.o sshmd5.o sshprime.o \
200
 
                sshpubk.o sshrand.o sshrsa.o sshrsag.o sshsh512.o sshsha.o \
201
 
                time.o tree234.o uxcons.o uxgen.o uxmisc.o uxnoise.o \
202
 
                uxstore.o version.o 
 
220
        $(CC) -o $@ cmdgen.o import.o misc.o notiming.o sshaes.o sshbn.o \
 
221
                sshdes.o sshdss.o sshdssg.o sshmd5.o sshprime.o sshpubk.o \
 
222
                sshrand.o sshrsa.o sshrsag.o sshsh512.o sshsha.o time.o \
 
223
                tree234.o uxcons.o uxgen.o uxmisc.o uxnoise.o uxstore.o \
 
224
                version.o $(ULDFLAGS) 
203
225
 
204
 
puttytel: be_nossh.o cmdline.o config.o dialog.o fromucs.o gtkcfg.o \
205
 
                gtkcols.o gtkdlg.o gtkpanel.o gtkwin.o ldisc.o ldiscucs.o \
206
 
                localenc.o logging.o macenc.o mimeenc.o minibidi.o misc.o \
207
 
                nocproxy.o pinger.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o \
 
226
puttytel: be_nos_s.o cmdline.o config.o dialog.o fromucs.o gtkcfg.o \
 
227
                gtkcols.o gtkdlg.o gtkwin.o ldisc.o ldiscucs.o localenc.o \
 
228
                logging.o macenc.o mimeenc.o minibidi.o misc.o nocproxy.o \
 
229
                pinger.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o sercfg.o \
208
230
                settings.o slookup.o telnet.o terminal.o time.o timing.o \
209
231
                toucs.o tree234.o utf8.o uxcfg.o uxmisc.o uxnet.o uxprint.o \
210
 
                uxproxy.o uxputty.o uxsel.o uxsignal.o uxstore.o uxucs.o \
211
 
                version.o wcwidth.o xenc.o xkeysym.o
212
 
        $(CC) $(XLDFLAGS) -o $@ be_nossh.o cmdline.o config.o dialog.o \
213
 
                fromucs.o gtkcfg.o gtkcols.o gtkdlg.o gtkpanel.o gtkwin.o \
214
 
                ldisc.o ldiscucs.o localenc.o logging.o macenc.o mimeenc.o \
215
 
                minibidi.o misc.o nocproxy.o pinger.o proxy.o raw.o rlogin.o \
216
 
                sbcs.o sbcsdat.o settings.o slookup.o telnet.o terminal.o \
217
 
                time.o timing.o toucs.o tree234.o utf8.o uxcfg.o uxmisc.o \
218
 
                uxnet.o uxprint.o uxproxy.o uxputty.o uxsel.o uxsignal.o \
219
 
                uxstore.o uxucs.o version.o wcwidth.o xenc.o xkeysym.o 
 
232
                uxproxy.o uxputty.o uxsel.o uxser.o uxsignal.o uxstore.o \
 
233
                uxucs.o version.o wcwidth.o xenc.o xkeysym.o xpmpucfg.o \
 
234
                xpmputty.o
 
235
        $(CC) -o $@ be_nos_s.o cmdline.o config.o dialog.o fromucs.o \
 
236
                gtkcfg.o gtkcols.o gtkdlg.o gtkwin.o ldisc.o ldiscucs.o \
 
237
                localenc.o logging.o macenc.o mimeenc.o minibidi.o misc.o \
 
238
                nocproxy.o pinger.o proxy.o raw.o rlogin.o sbcs.o sbcsdat.o \
 
239
                sercfg.o settings.o slookup.o telnet.o terminal.o time.o \
 
240
                timing.o toucs.o tree234.o utf8.o uxcfg.o uxmisc.o uxnet.o \
 
241
                uxprint.o uxproxy.o uxputty.o uxsel.o uxser.o uxsignal.o \
 
242
                uxstore.o uxucs.o version.o wcwidth.o xenc.o xkeysym.o \
 
243
                xpmpucfg.o xpmputty.o $(XLDFLAGS) 
220
244
 
221
245
be_all.o: ../be_all.c ../putty.h ../puttyps.h ../network.h ../misc.h \
222
246
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
223
247
                ../unix/unix.h ../puttymem.h ../tree234.h \
224
248
                ../windows/winhelp.h ../charset/charset.h
225
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../be_all.c
 
249
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all.c
 
250
be_all_s.o: ../be_all_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \
 
251
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
 
252
                ../unix/unix.h ../puttymem.h ../tree234.h \
 
253
                ../windows/winhelp.h ../charset/charset.h
 
254
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_all_s.c
226
255
be_none.o: ../be_none.c ../putty.h ../puttyps.h ../network.h ../misc.h \
227
256
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
228
257
                ../unix/unix.h ../puttymem.h ../tree234.h \
229
258
                ../windows/winhelp.h ../charset/charset.h
230
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../be_none.c
 
259
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_none.c
 
260
be_nos_s.o: ../be_nos_s.c ../putty.h ../puttyps.h ../network.h ../misc.h \
 
261
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
 
262
                ../unix/unix.h ../puttymem.h ../tree234.h \
 
263
                ../windows/winhelp.h ../charset/charset.h
 
264
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nos_s.c
231
265
be_nossh.o: ../be_nossh.c ../putty.h ../puttyps.h ../network.h ../misc.h \
232
266
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
233
267
                ../unix/unix.h ../puttymem.h ../tree234.h \
234
268
                ../windows/winhelp.h ../charset/charset.h
235
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../be_nossh.c
 
269
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../be_nossh.c
236
270
cmdgen.o: ../cmdgen.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
237
271
                ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
238
272
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
239
273
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
240
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../cmdgen.c
 
274
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdgen.c
241
275
cmdline.o: ../cmdline.c ../putty.h ../puttyps.h ../network.h ../misc.h \
242
276
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
243
277
                ../unix/unix.h ../puttymem.h ../tree234.h \
244
278
                ../windows/winhelp.h ../charset/charset.h
245
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../cmdline.c
 
279
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cmdline.c
246
280
config.o: ../config.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
247
281
                ../network.h ../misc.h ../windows/winstuff.h \
248
282
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
249
283
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
250
284
                ../charset/charset.h
251
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../config.c
 
285
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../config.c
252
286
cproxy.o: ../cproxy.c ../putty.h ../ssh.h ../network.h ../proxy.h \
253
287
                ../puttyps.h ../misc.h ../puttymem.h ../int64.h \
254
288
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
255
289
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
256
290
                ../charset/charset.h
257
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../cproxy.c
 
291
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../cproxy.c
258
292
dialog.o: ../dialog.c ../putty.h ../dialog.h ../puttyps.h ../network.h \
259
293
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
260
294
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
261
295
                ../windows/winhelp.h ../charset/charset.h
262
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../dialog.c
 
296
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../dialog.c
263
297
fromucs.o: ../charset/fromucs.c ../charset/charset.h ../charset/internal.h
264
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/fromucs.c
 
298
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/fromucs.c
265
299
gtkcfg.o: ../unix/gtkcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
266
300
                ../network.h ../misc.h ../windows/winstuff.h \
267
301
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
268
302
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
269
303
                ../charset/charset.h
270
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/gtkcfg.c
 
304
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcfg.c
271
305
gtkcols.o: ../unix/gtkcols.c ../unix/gtkcols.h
272
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/gtkcols.c
273
 
gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../unix/gtkpanel.h ../putty.h \
274
 
                ../storage.h ../dialog.h ../tree234.h ../puttyps.h \
275
 
                ../network.h ../misc.h ../windows/winstuff.h \
276
 
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
277
 
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
278
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/gtkdlg.c
279
 
gtkpanel.o: ../unix/gtkpanel.c ../unix/gtkpanel.h
280
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/gtkpanel.c
 
306
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkcols.c
 
307
gtkdlg.o: ../unix/gtkdlg.c ../unix/gtkcols.h ../putty.h ../storage.h \
 
308
                ../dialog.h ../tree234.h ../puttyps.h ../network.h ../misc.h \
 
309
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
 
310
                ../unix/unix.h ../puttymem.h ../windows/winhelp.h \
 
311
                ../charset/charset.h
 
312
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkdlg.c
281
313
gtkwin.o: ../unix/gtkwin.c ../putty.h ../terminal.h ../puttyps.h \
282
314
                ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
283
315
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
284
316
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
285
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/gtkwin.c
 
317
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/gtkwin.c
286
318
import.o: ../import.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \
287
319
                ../network.h ../puttymem.h ../int64.h ../windows/winstuff.h \
288
320
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
289
321
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
290
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../import.c
 
322
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../import.c
291
323
int64.o: ../int64.c ../int64.h
292
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../int64.c
 
324
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../int64.c
293
325
ldisc.o: ../ldisc.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \
294
326
                ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
295
327
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
296
328
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
297
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../ldisc.c
 
329
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldisc.c
298
330
ldiscucs.o: ../ldiscucs.c ../putty.h ../terminal.h ../ldisc.h ../puttyps.h \
299
331
                ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
300
332
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
301
333
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
302
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../ldiscucs.c
 
334
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ldiscucs.c
303
335
localenc.o: ../charset/localenc.c ../charset/charset.h ../charset/internal.h
304
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/localenc.c
 
336
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/localenc.c
305
337
logging.o: ../logging.c ../putty.h ../puttyps.h ../network.h ../misc.h \
306
338
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
307
339
                ../unix/unix.h ../puttymem.h ../tree234.h \
308
340
                ../windows/winhelp.h ../charset/charset.h
309
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../logging.c
 
341
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../logging.c
310
342
mac.o: ../mac/mac.c ../mac/macresid.h ../putty.h ../ssh.h ../terminal.h \
311
343
                ../mac/mac.h ../puttyps.h ../network.h ../misc.h \
312
344
                ../puttymem.h ../int64.h ../tree234.h ../charset/charset.h \
313
345
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
314
346
                ../unix/unix.h ../windows/winhelp.h
315
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/mac.c
 
347
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/mac.c
316
348
macabout.o: ../mac/macabout.c ../putty.h ../mac/mac.h ../mac/macresid.h \
317
349
                ../puttyps.h ../network.h ../misc.h ../charset/charset.h \
318
350
                ../tree234.h ../windows/winstuff.h ../mac/macstuff.h \
319
351
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
320
352
                ../windows/winhelp.h
321
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macabout.c
 
353
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macabout.c
322
354
macctrls.o: ../mac/macctrls.c ../putty.h ../mac/mac.h ../mac/macresid.h \
323
355
                ../dialog.h ../tree234.h ../puttyps.h ../network.h ../misc.h \
324
356
                ../charset/charset.h ../windows/winstuff.h ../mac/macstuff.h \
325
357
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
326
358
                ../windows/winhelp.h
327
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macctrls.c
 
359
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macctrls.c
328
360
macdlg.o: ../mac/macdlg.c ../putty.h ../dialog.h ../mac/mac.h \
329
361
                ../mac/macresid.h ../storage.h ../puttyps.h ../network.h \
330
362
                ../misc.h ../charset/charset.h ../tree234.h \
331
363
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
332
364
                ../unix/unix.h ../puttymem.h ../windows/winhelp.h
333
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macdlg.c
 
365
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macdlg.c
334
366
macenc.o: ../charset/macenc.c ../charset/charset.h ../charset/internal.h
335
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/macenc.c
 
367
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/macenc.c
336
368
macevlog.o: ../mac/macevlog.c ../putty.h ../mac/mac.h ../mac/macresid.h \
337
369
                ../terminal.h ../puttyps.h ../network.h ../misc.h \
338
370
                ../charset/charset.h ../tree234.h ../windows/winstuff.h \
339
371
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
340
372
                ../puttymem.h ../windows/winhelp.h
341
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macevlog.c
 
373
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macevlog.c
342
374
macmisc.o: ../mac/macmisc.c ../putty.h ../mac/mac.h ../ssh.h ../puttyps.h \
343
375
                ../network.h ../misc.h ../charset/charset.h ../tree234.h \
344
376
                ../puttymem.h ../int64.h ../windows/winstuff.h \
345
377
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
346
378
                ../windows/winhelp.h
347
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macmisc.c
 
379
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macmisc.c
348
380
macnet.o: ../mac/macnet.c ../putty.h ../network.h ../mac/mac.h ../ssh.h \
349
381
                ../puttyps.h ../misc.h ../charset/charset.h ../tree234.h \
350
382
                ../puttymem.h ../int64.h ../windows/winstuff.h \
351
383
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
352
384
                ../windows/winhelp.h
353
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macnet.c
 
385
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macnet.c
354
386
macnoise.o: ../mac/macnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \
355
387
                ../network.h ../misc.h ../puttymem.h ../int64.h \
356
388
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
357
389
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
358
390
                ../charset/charset.h
359
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macnoise.c
 
391
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macnoise.c
360
392
macpgen.o: ../mac/macpgen.c ../mac/macpgrid.h ../putty.h ../ssh.h \
361
393
                ../mac/mac.h ../puttyps.h ../network.h ../misc.h \
362
394
                ../puttymem.h ../int64.h ../charset/charset.h ../tree234.h \
363
395
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
364
396
                ../unix/unix.h ../windows/winhelp.h
365
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macpgen.c
 
397
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macpgen.c
366
398
macpgkey.o: ../mac/macpgkey.c ../putty.h ../mac/mac.h ../mac/macpgrid.h \
367
399
                ../ssh.h ../puttyps.h ../network.h ../misc.h \
368
400
                ../charset/charset.h ../tree234.h ../puttymem.h ../int64.h \
369
401
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
370
402
                ../unix/unix.h ../windows/winhelp.h
371
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macpgkey.c
 
403
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macpgkey.c
372
404
macstore.o: ../mac/macstore.c ../putty.h ../storage.h ../mac/mac.h \
373
405
                ../mac/macresid.h ../puttyps.h ../network.h ../misc.h \
374
406
                ../charset/charset.h ../tree234.h ../windows/winstuff.h \
375
407
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
376
408
                ../puttymem.h ../windows/winhelp.h
377
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macstore.c
 
409
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macstore.c
378
410
macterm.o: ../mac/macterm.c ../mac/macresid.h ../putty.h \
379
411
                ../charset/charset.h ../mac/mac.h ../terminal.h ../puttyps.h \
380
412
                ../network.h ../misc.h ../tree234.h ../windows/winstuff.h \
381
413
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
382
414
                ../puttymem.h ../windows/winhelp.h
383
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macterm.c
 
415
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macterm.c
384
416
macucs.o: ../mac/macucs.c ../putty.h ../charset/charset.h ../terminal.h \
385
417
                ../misc.h ../mac/mac.h ../puttyps.h ../network.h \
386
418
                ../tree234.h ../puttymem.h ../windows/winstuff.h \
387
419
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
388
420
                ../windows/winhelp.h
389
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/macucs.c
 
421
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/macucs.c
390
422
mimeenc.o: ../charset/mimeenc.c ../charset/charset.h ../charset/internal.h
391
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/mimeenc.c
 
423
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/mimeenc.c
392
424
minibidi.o: ../minibidi.c ../misc.h ../puttymem.h
393
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../minibidi.c
 
425
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../minibidi.c
394
426
misc.o: ../misc.c ../putty.h ../puttyps.h ../network.h ../misc.h \
395
427
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
396
428
                ../unix/unix.h ../puttymem.h ../tree234.h \
397
429
                ../windows/winhelp.h ../charset/charset.h
398
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../misc.c
 
430
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../misc.c
399
431
mtcpnet.o: ../mac/mtcpnet.c ../putty.h ../network.h ../mac/mac.h \
400
432
                ../puttyps.h ../misc.h ../charset/charset.h ../tree234.h \
401
433
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
402
434
                ../unix/unix.h ../puttymem.h ../windows/winhelp.h
403
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/mtcpnet.c
 
435
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/mtcpnet.c
404
436
nocproxy.o: ../nocproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \
405
437
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
406
438
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
407
439
                ../windows/winhelp.h ../charset/charset.h
408
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../nocproxy.c
 
440
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../nocproxy.c
409
441
notiming.o: ../notiming.c ../putty.h ../puttyps.h ../network.h ../misc.h \
410
442
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
411
443
                ../unix/unix.h ../puttymem.h ../tree234.h \
412
444
                ../windows/winhelp.h ../charset/charset.h
413
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../notiming.c
 
445
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../notiming.c
414
446
osxctrls.o: ../macosx/osxctrls.m ../putty.h ../dialog.h ../macosx/osxclass.h \
415
447
                ../tree234.h ../puttyps.h ../network.h ../misc.h \
416
448
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
417
449
                ../unix/unix.h ../puttymem.h ../windows/winhelp.h \
418
450
                ../charset/charset.h
419
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../macosx/osxctrls.m
 
451
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxctrls.m
420
452
osxdlg.o: ../macosx/osxdlg.m ../putty.h ../storage.h ../dialog.h \
421
453
                ../macosx/osxclass.h ../puttyps.h ../network.h ../misc.h \
422
454
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
423
455
                ../unix/unix.h ../puttymem.h ../tree234.h \
424
456
                ../windows/winhelp.h ../charset/charset.h
425
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../macosx/osxdlg.m
 
457
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxdlg.m
426
458
osxmain.o: ../macosx/osxmain.m ../putty.h ../macosx/osxclass.h ../puttyps.h \
427
459
                ../network.h ../misc.h ../windows/winstuff.h \
428
460
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
429
461
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
430
462
                ../charset/charset.h
431
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../macosx/osxmain.m
 
463
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxmain.m
432
464
osxsel.o: ../macosx/osxsel.m ../putty.h ../macosx/osxclass.h ../puttyps.h \
433
465
                ../network.h ../misc.h ../windows/winstuff.h \
434
466
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
435
467
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
436
468
                ../charset/charset.h
437
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../macosx/osxsel.m
 
469
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxsel.m
438
470
osxwin.o: ../macosx/osxwin.m ../putty.h ../terminal.h ../macosx/osxclass.h \
439
471
                ../puttyps.h ../network.h ../misc.h ../tree234.h \
440
472
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
441
473
                ../unix/unix.h ../puttymem.h ../windows/winhelp.h \
442
474
                ../charset/charset.h
443
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../macosx/osxwin.m
 
475
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../macosx/osxwin.m
444
476
otnet.o: ../mac/otnet.c ../putty.h ../network.h ../mac/mac.h ../puttyps.h \
445
477
                ../misc.h ../charset/charset.h ../tree234.h \
446
478
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
447
479
                ../unix/unix.h ../puttymem.h ../windows/winhelp.h
448
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/otnet.c
 
480
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/otnet.c
449
481
pinger.o: ../pinger.c ../putty.h ../puttyps.h ../network.h ../misc.h \
450
482
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
451
483
                ../unix/unix.h ../puttymem.h ../tree234.h \
452
484
                ../windows/winhelp.h ../charset/charset.h
453
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../pinger.c
 
485
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pinger.c
454
486
portfwd.o: ../portfwd.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
455
487
                ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
456
488
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
457
489
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
458
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../portfwd.c
 
490
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../portfwd.c
459
491
pproxy.o: ../pproxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \
460
492
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
461
493
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
462
494
                ../windows/winhelp.h ../charset/charset.h
463
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../pproxy.c
 
495
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pproxy.c
464
496
proxy.o: ../proxy.c ../putty.h ../network.h ../proxy.h ../puttyps.h \
465
497
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
466
498
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
467
499
                ../windows/winhelp.h ../charset/charset.h
468
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../proxy.c
 
500
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../proxy.c
469
501
pscp.o: ../pscp.c ../putty.h ../psftp.h ../ssh.h ../sftp.h ../storage.h \
470
 
                ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \
 
502
                ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \
471
503
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
472
504
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
473
505
                ../charset/charset.h
474
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../pscp.c
 
506
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../pscp.c
475
507
psftp.o: ../psftp.c ../putty.h ../psftp.h ../storage.h ../ssh.h ../sftp.h \
476
508
                ../int64.h ../puttyps.h ../network.h ../misc.h ../puttymem.h \
477
509
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
478
510
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
479
511
                ../charset/charset.h
480
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../psftp.c
 
512
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../psftp.c
481
513
raw.o: ../raw.c ../putty.h ../puttyps.h ../network.h ../misc.h \
482
514
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
483
515
                ../unix/unix.h ../puttymem.h ../tree234.h \
484
516
                ../windows/winhelp.h ../charset/charset.h
485
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../raw.c
 
517
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../raw.c
486
518
rlogin.o: ../rlogin.c ../putty.h ../puttyps.h ../network.h ../misc.h \
487
519
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
488
520
                ../unix/unix.h ../puttymem.h ../tree234.h \
489
521
                ../windows/winhelp.h ../charset/charset.h
490
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../rlogin.c
 
522
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../rlogin.c
491
523
sbcs.o: ../charset/sbcs.c ../charset/charset.h ../charset/internal.h
492
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/sbcs.c
 
524
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcs.c
493
525
sbcsdat.o: ../charset/sbcsdat.c ../charset/charset.h ../charset/internal.h
494
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/sbcsdat.c
 
526
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/sbcsdat.c
 
527
sercfg.o: ../sercfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
 
528
                ../network.h ../misc.h ../windows/winstuff.h \
 
529
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
 
530
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
 
531
                ../charset/charset.h
 
532
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sercfg.c
495
533
settings.o: ../settings.c ../putty.h ../storage.h ../puttyps.h ../network.h \
496
534
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
497
535
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
498
536
                ../windows/winhelp.h ../charset/charset.h
499
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../settings.c
 
537
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../settings.c
500
538
sftp.o: ../sftp.c ../misc.h ../int64.h ../tree234.h ../sftp.h ../puttymem.h
501
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sftp.c
 
539
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sftp.c
502
540
sizetip.o: ../windows/sizetip.c ../putty.h ../puttyps.h ../network.h \
503
541
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
504
542
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
505
543
                ../windows/winhelp.h ../charset/charset.h
506
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/sizetip.c
 
544
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/sizetip.c
507
545
slookup.o: ../charset/slookup.c ../charset/charset.h ../charset/internal.h \
508
546
                ../charset/enum.c ../charset/sbcsdat.c ../charset/utf8.c
509
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/slookup.c
 
547
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/slookup.c
510
548
ssh.o: ../ssh.c ../putty.h ../tree234.h ../ssh.h ../puttyps.h ../network.h \
511
549
                ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
512
550
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
513
551
                ../windows/winhelp.h ../charset/charset.h
514
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../ssh.c
 
552
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssh.c
515
553
sshaes.o: ../sshaes.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
516
554
                ../misc.h
517
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshaes.c
 
555
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshaes.c
 
556
ssharcf.o: ../ssharcf.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
 
557
                ../misc.h
 
558
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../ssharcf.c
518
559
sshblowf.o: ../sshblowf.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
519
560
                ../misc.h
520
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshblowf.c
 
561
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshblowf.c
521
562
sshbn.o: ../sshbn.c ../misc.h ../ssh.h ../puttymem.h ../network.h ../int64.h
522
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshbn.c
 
563
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshbn.c
523
564
sshcrc.o: ../sshcrc.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
524
565
                ../misc.h
525
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshcrc.c
 
566
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrc.c
526
567
sshcrcda.o: ../sshcrcda.c ../misc.h ../ssh.h ../puttymem.h ../network.h \
527
568
                ../int64.h
528
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshcrcda.c
 
569
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshcrcda.c
529
570
sshdes.o: ../sshdes.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
530
571
                ../misc.h
531
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshdes.c
 
572
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdes.c
532
573
sshdh.o: ../sshdh.c ../ssh.h ../puttymem.h ../network.h ../int64.h ../misc.h
533
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshdh.c
 
574
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdh.c
534
575
sshdss.o: ../sshdss.c ../ssh.h ../misc.h ../puttymem.h ../network.h \
535
576
                ../int64.h
536
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshdss.c
 
577
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdss.c
537
578
sshdssg.o: ../sshdssg.c ../misc.h ../ssh.h ../puttymem.h ../network.h \
538
579
                ../int64.h
539
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshdssg.c
 
580
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshdssg.c
540
581
sshmd5.o: ../sshmd5.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
541
582
                ../misc.h
542
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshmd5.c
 
583
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshmd5.c
543
584
sshprime.o: ../sshprime.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
544
585
                ../misc.h
545
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshprime.c
 
586
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshprime.c
546
587
sshpubk.o: ../sshpubk.c ../putty.h ../ssh.h ../misc.h ../puttyps.h \
547
588
                ../network.h ../puttymem.h ../int64.h ../windows/winstuff.h \
548
589
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
549
590
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
550
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshpubk.c
 
591
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshpubk.c
551
592
sshrand.o: ../sshrand.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
552
593
                ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
553
594
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
554
595
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
555
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshrand.c
 
596
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrand.c
556
597
sshrsa.o: ../sshrsa.c ../ssh.h ../misc.h ../puttymem.h ../network.h \
557
598
                ../int64.h
558
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshrsa.c
 
599
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsa.c
559
600
sshrsag.o: ../sshrsag.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
560
601
                ../misc.h
561
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshrsag.c
 
602
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshrsag.c
 
603
sshsh256.o: ../sshsh256.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
 
604
                ../misc.h
 
605
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh256.c
562
606
sshsh512.o: ../sshsh512.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
563
607
                ../misc.h
564
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshsh512.c
 
608
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsh512.c
565
609
sshsha.o: ../sshsha.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
566
610
                ../misc.h
567
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshsha.c
 
611
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshsha.c
568
612
sshzlib.o: ../sshzlib.c ../ssh.h ../puttymem.h ../network.h ../int64.h \
569
613
                ../misc.h
570
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../sshzlib.c
 
614
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../sshzlib.c
571
615
stricmp.o: ../mac/stricmp.c ../putty.h ../puttyps.h ../network.h ../misc.h \
572
616
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
573
617
                ../unix/unix.h ../puttymem.h ../tree234.h \
574
618
                ../windows/winhelp.h ../charset/charset.h
575
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/stricmp.c
 
619
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/stricmp.c
576
620
telnet.o: ../telnet.c ../putty.h ../puttyps.h ../network.h ../misc.h \
577
621
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
578
622
                ../unix/unix.h ../puttymem.h ../tree234.h \
579
623
                ../windows/winhelp.h ../charset/charset.h
580
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../telnet.c
 
624
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../telnet.c
581
625
terminal.o: ../terminal.c ../putty.h ../terminal.h ../puttyps.h ../network.h \
582
626
                ../misc.h ../tree234.h ../windows/winstuff.h \
583
627
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
584
628
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
585
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../terminal.c
 
629
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../terminal.c
586
630
testback.o: ../testback.c ../putty.h ../puttyps.h ../network.h ../misc.h \
587
631
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
588
632
                ../unix/unix.h ../puttymem.h ../tree234.h \
589
633
                ../windows/winhelp.h ../charset/charset.h
590
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../testback.c
 
634
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../testback.c
591
635
time.o: ../time.c
592
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../time.c
 
636
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../time.c
593
637
timing.o: ../timing.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
594
638
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
595
639
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
596
640
                ../windows/winhelp.h ../charset/charset.h
597
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../timing.c
 
641
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../timing.c
598
642
toucs.o: ../charset/toucs.c ../charset/charset.h ../charset/internal.h
599
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/toucs.c
 
643
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/toucs.c
600
644
tree234.o: ../tree234.c ../puttymem.h ../tree234.h
601
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../tree234.c
 
645
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../tree234.c
602
646
utf8.o: ../charset/utf8.c ../charset/charset.h ../charset/internal.h
603
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/utf8.c
 
647
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/utf8.c
604
648
ux_x11.o: ../unix/ux_x11.c ../putty.h ../ssh.h ../puttyps.h ../network.h \
605
649
                ../misc.h ../puttymem.h ../int64.h ../windows/winstuff.h \
606
650
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
607
651
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
608
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/ux_x11.c
 
652
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/ux_x11.c
609
653
uxagentc.o: ../unix/uxagentc.c ../putty.h ../misc.h ../tree234.h \
610
654
                ../puttymem.h ../puttyps.h ../network.h \
611
655
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
612
656
                ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
613
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxagentc.c
 
657
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxagentc.c
614
658
uxcfg.o: ../unix/uxcfg.c ../putty.h ../dialog.h ../storage.h ../puttyps.h \
615
659
                ../network.h ../misc.h ../windows/winstuff.h \
616
660
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
617
661
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
618
662
                ../charset/charset.h
619
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxcfg.c
 
663
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcfg.c
620
664
uxcons.o: ../unix/uxcons.c ../putty.h ../storage.h ../ssh.h ../puttyps.h \
621
665
                ../network.h ../misc.h ../puttymem.h ../int64.h \
622
666
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
623
667
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
624
668
                ../charset/charset.h
625
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxcons.c
 
669
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxcons.c
626
670
uxgen.o: ../unix/uxgen.c ../putty.h ../puttyps.h ../network.h ../misc.h \
627
671
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
628
672
                ../unix/unix.h ../puttymem.h ../tree234.h \
629
673
                ../windows/winhelp.h ../charset/charset.h
630
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxgen.c
 
674
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxgen.c
631
675
uxmisc.o: ../unix/uxmisc.c ../putty.h ../puttyps.h ../network.h ../misc.h \
632
676
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
633
677
                ../unix/unix.h ../puttymem.h ../tree234.h \
634
678
                ../windows/winhelp.h ../charset/charset.h
635
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxmisc.c
 
679
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxmisc.c
636
680
uxnet.o: ../unix/uxnet.c ../putty.h ../network.h ../tree234.h ../puttyps.h \
637
681
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
638
682
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
639
683
                ../windows/winhelp.h ../charset/charset.h
640
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxnet.c
 
684
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnet.c
641
685
uxnoise.o: ../unix/uxnoise.c ../putty.h ../ssh.h ../storage.h ../puttyps.h \
642
686
                ../network.h ../misc.h ../puttymem.h ../int64.h \
643
687
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
644
688
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
645
689
                ../charset/charset.h
646
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxnoise.c
 
690
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxnoise.c
647
691
uxplink.o: ../unix/uxplink.c ../putty.h ../storage.h ../tree234.h \
648
692
                ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
649
693
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
650
694
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
651
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxplink.c
 
695
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxplink.c
652
696
uxprint.o: ../unix/uxprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \
653
697
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
654
698
                ../unix/unix.h ../puttymem.h ../tree234.h \
655
699
                ../windows/winhelp.h ../charset/charset.h
656
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxprint.c
 
700
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxprint.c
657
701
uxproxy.o: ../unix/uxproxy.c ../tree234.h ../putty.h ../network.h ../proxy.h \
658
702
                ../puttyps.h ../misc.h ../windows/winstuff.h \
659
703
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
660
704
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
661
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxproxy.c
 
705
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxproxy.c
662
706
uxpterm.o: ../unix/uxpterm.c ../putty.h ../puttyps.h ../network.h ../misc.h \
663
707
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
664
708
                ../unix/unix.h ../puttymem.h ../tree234.h \
665
709
                ../windows/winhelp.h ../charset/charset.h
666
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxpterm.c
 
710
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpterm.c
667
711
uxpty.o: ../unix/uxpty.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
668
712
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
669
713
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
670
714
                ../windows/winhelp.h ../charset/charset.h
671
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxpty.c
 
715
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxpty.c
672
716
uxputty.o: ../unix/uxputty.c ../putty.h ../storage.h ../puttyps.h \
673
717
                ../network.h ../misc.h ../windows/winstuff.h \
674
718
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
675
719
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
676
720
                ../charset/charset.h
677
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxputty.c
 
721
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxputty.c
678
722
uxsel.o: ../unix/uxsel.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
679
723
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
680
724
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
681
725
                ../windows/winhelp.h ../charset/charset.h
682
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxsel.c
683
 
uxsftp.o: ../unix/uxsftp.c ../putty.h ../psftp.h ../puttyps.h ../network.h \
 
726
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsel.c
 
727
uxser.o: ../unix/uxser.c ../putty.h ../tree234.h ../puttyps.h ../network.h \
684
728
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
685
 
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
 
729
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
686
730
                ../windows/winhelp.h ../charset/charset.h
687
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxsftp.c
 
731
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxser.c
 
732
uxsftp.o: ../unix/uxsftp.c ../putty.h ../psftp.h ../int64.h ../puttyps.h \
 
733
                ../network.h ../misc.h ../windows/winstuff.h \
 
734
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
 
735
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
 
736
                ../charset/charset.h
 
737
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsftp.c
688
738
uxsignal.o: ../unix/uxsignal.c
689
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxsignal.c
 
739
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxsignal.c
690
740
uxstore.o: ../unix/uxstore.c ../putty.h ../storage.h ../tree234.h \
691
741
                ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
692
742
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
693
743
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
694
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxstore.c
 
744
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxstore.c
695
745
uxucs.o: ../unix/uxucs.c ../putty.h ../charset/charset.h ../terminal.h \
696
746
                ../misc.h ../puttyps.h ../network.h ../tree234.h \
697
747
                ../puttymem.h ../windows/winstuff.h ../mac/macstuff.h \
698
748
                ../macosx/osx.h ../unix/unix.h ../windows/winhelp.h
699
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/uxucs.c
 
749
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/uxucs.c
700
750
vsnprint.o: ../mac/vsnprint.c ../putty.h ../puttyps.h ../network.h ../misc.h \
701
751
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
702
752
                ../unix/unix.h ../puttymem.h ../tree234.h \
703
753
                ../windows/winhelp.h ../charset/charset.h
704
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../mac/vsnprint.c
 
754
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../mac/vsnprint.c
705
755
wcwidth.o: ../wcwidth.c ../putty.h ../puttyps.h ../network.h ../misc.h \
706
756
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
707
757
                ../unix/unix.h ../puttymem.h ../tree234.h \
708
758
                ../windows/winhelp.h ../charset/charset.h
709
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../wcwidth.c
 
759
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wcwidth.c
710
760
wildcard.o: ../wildcard.c ../putty.h ../puttyps.h ../network.h ../misc.h \
711
761
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
712
762
                ../unix/unix.h ../puttymem.h ../tree234.h \
713
763
                ../windows/winhelp.h ../charset/charset.h
714
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../wildcard.c
 
764
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../wildcard.c
715
765
wincfg.o: ../windows/wincfg.c ../putty.h ../dialog.h ../storage.h \
716
766
                ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
717
767
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
718
768
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
719
769
                ../charset/charset.h
720
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/wincfg.c
 
770
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincfg.c
721
771
wincons.o: ../windows/wincons.c ../putty.h ../storage.h ../ssh.h \
722
772
                ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \
723
773
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
724
774
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
725
775
                ../charset/charset.h
726
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/wincons.c
 
776
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wincons.c
727
777
winctrls.o: ../windows/winctrls.c ../putty.h ../misc.h ../dialog.h \
728
778
                ../puttyps.h ../network.h ../puttymem.h \
729
779
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
730
780
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
731
781
                ../charset/charset.h
732
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winctrls.c
 
782
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winctrls.c
733
783
windefs.o: ../windows/windefs.c ../putty.h ../puttyps.h ../network.h \
734
784
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
735
785
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
736
786
                ../windows/winhelp.h ../charset/charset.h
737
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/windefs.c
 
787
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windefs.c
738
788
windlg.o: ../windows/windlg.c ../putty.h ../ssh.h ../windows/win_res.h \
739
789
                ../storage.h ../dialog.h ../puttyps.h ../network.h ../misc.h \
740
790
                ../puttymem.h ../int64.h ../windows/winstuff.h \
741
791
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
742
792
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
743
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/windlg.c
 
793
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/windlg.c
744
794
window.o: ../windows/window.c ../putty.h ../terminal.h ../storage.h \
745
795
                ../windows/win_res.h ../puttyps.h ../network.h ../misc.h \
746
796
                ../tree234.h ../windows/winstuff.h ../mac/macstuff.h \
747
797
                ../macosx/osx.h ../unix/unix.h ../puttymem.h \
748
798
                ../windows/winhelp.h ../charset/charset.h
749
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/window.c
 
799
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/window.c
 
800
winhandl.o: ../windows/winhandl.c ../putty.h ../puttyps.h ../network.h \
 
801
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
 
802
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
 
803
                ../windows/winhelp.h ../charset/charset.h
 
804
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhandl.c
 
805
winhelp.o: ../windows/winhelp.c ../putty.h ../puttyps.h ../network.h \
 
806
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
 
807
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
 
808
                ../windows/winhelp.h ../charset/charset.h
 
809
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winhelp.c
750
810
winmisc.o: ../windows/winmisc.c ../putty.h ../puttyps.h ../network.h \
751
811
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
752
812
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
753
813
                ../windows/winhelp.h ../charset/charset.h
754
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winmisc.c
 
814
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winmisc.c
755
815
winnet.o: ../windows/winnet.c ../putty.h ../network.h ../tree234.h \
756
816
                ../puttyps.h ../misc.h ../windows/winstuff.h \
757
817
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
758
818
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
759
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winnet.c
 
819
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnet.c
760
820
winnoise.o: ../windows/winnoise.c ../putty.h ../ssh.h ../storage.h \
761
821
                ../puttyps.h ../network.h ../misc.h ../puttymem.h ../int64.h \
762
822
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
763
823
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
764
824
                ../charset/charset.h
765
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winnoise.c
 
825
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winnoise.c
766
826
winpgen.o: ../windows/winpgen.c ../putty.h ../ssh.h ../puttyps.h \
767
827
                ../network.h ../misc.h ../puttymem.h ../int64.h \
768
828
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
769
829
                ../unix/unix.h ../tree234.h ../windows/winhelp.h \
770
830
                ../charset/charset.h
771
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winpgen.c
 
831
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgen.c
772
832
winpgnt.o: ../windows/winpgnt.c ../putty.h ../ssh.h ../misc.h ../tree234.h \
773
833
                ../puttyps.h ../network.h ../puttymem.h ../int64.h \
774
834
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
775
835
                ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
776
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winpgnt.c
 
836
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgnt.c
777
837
winpgntc.o: ../windows/winpgntc.c ../putty.h ../puttyps.h ../network.h \
778
838
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
779
839
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
780
840
                ../windows/winhelp.h ../charset/charset.h
781
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winpgntc.c
 
841
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winpgntc.c
782
842
winplink.o: ../windows/winplink.c ../putty.h ../storage.h ../tree234.h \
783
843
                ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
784
844
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
785
845
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
786
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winplink.c
 
846
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winplink.c
787
847
winprint.o: ../windows/winprint.c ../putty.h ../puttyps.h ../network.h \
788
848
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
789
849
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
790
850
                ../windows/winhelp.h ../charset/charset.h
791
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winprint.c
792
 
winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../puttyps.h \
793
 
                ../network.h ../misc.h ../windows/winstuff.h \
 
851
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winprint.c
 
852
winproxy.o: ../windows/winproxy.c ../tree234.h ../putty.h ../network.h \
 
853
                ../proxy.h ../puttyps.h ../misc.h ../windows/winstuff.h \
 
854
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
 
855
                ../puttymem.h ../windows/winhelp.h ../charset/charset.h
 
856
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winproxy.c
 
857
winser.o: ../windows/winser.c ../putty.h ../puttyps.h ../network.h ../misc.h \
 
858
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
 
859
                ../unix/unix.h ../puttymem.h ../tree234.h \
 
860
                ../windows/winhelp.h ../charset/charset.h
 
861
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winser.c
 
862
winsftp.o: ../windows/winsftp.c ../putty.h ../psftp.h ../int64.h \
 
863
                ../puttyps.h ../network.h ../misc.h ../windows/winstuff.h \
794
864
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
795
865
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
796
866
                ../charset/charset.h
797
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winsftp.c
 
867
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winsftp.c
798
868
winstore.o: ../windows/winstore.c ../putty.h ../storage.h ../puttyps.h \
799
869
                ../network.h ../misc.h ../windows/winstuff.h \
800
870
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
801
871
                ../puttymem.h ../tree234.h ../windows/winhelp.h \
802
872
                ../charset/charset.h
803
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winstore.c
 
873
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winstore.c
804
874
wintime.o: ../windows/wintime.c ../putty.h ../puttyps.h ../network.h \
805
875
                ../misc.h ../windows/winstuff.h ../mac/macstuff.h \
806
876
                ../macosx/osx.h ../unix/unix.h ../puttymem.h ../tree234.h \
807
877
                ../windows/winhelp.h ../charset/charset.h
808
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/wintime.c
 
878
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/wintime.c
809
879
winucs.o: ../windows/winucs.c ../putty.h ../terminal.h ../misc.h \
810
880
                ../puttyps.h ../network.h ../tree234.h ../puttymem.h \
811
881
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
812
882
                ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
813
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winucs.c
814
 
winutils.o: ../windows/winutils.c ../windows/winstuff.h ../putty.h ../misc.h \
815
 
                ../tree234.h ../windows/winhelp.h ../puttyps.h ../network.h \
816
 
                ../puttymem.h ../mac/macstuff.h ../macosx/osx.h \
817
 
                ../unix/unix.h ../charset/charset.h
818
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../windows/winutils.c
 
883
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winucs.c
 
884
winutils.o: ../windows/winutils.c ../putty.h ../misc.h ../puttyps.h \
 
885
                ../network.h ../puttymem.h ../windows/winstuff.h \
 
886
                ../mac/macstuff.h ../macosx/osx.h ../unix/unix.h \
 
887
                ../tree234.h ../windows/winhelp.h ../charset/charset.h
 
888
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../windows/winutils.c
819
889
x11fwd.o: ../x11fwd.c ../putty.h ../ssh.h ../tree234.h ../puttyps.h \
820
890
                ../network.h ../misc.h ../puttymem.h ../int64.h \
821
891
                ../windows/winstuff.h ../mac/macstuff.h ../macosx/osx.h \
822
892
                ../unix/unix.h ../windows/winhelp.h ../charset/charset.h
823
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../x11fwd.c
 
893
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../x11fwd.c
824
894
xenc.o: ../charset/xenc.c ../charset/charset.h ../charset/internal.h
825
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../charset/xenc.c
 
895
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../charset/xenc.c
826
896
xkeysym.o: ../unix/xkeysym.c ../misc.h ../puttymem.h
827
 
        $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) -c ../unix/xkeysym.c
 
897
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xkeysym.c
 
898
xpmptcfg.o: ../unix/xpmptcfg.c
 
899
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmptcfg.c
 
900
xpmpterm.o: ../unix/xpmpterm.c
 
901
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpterm.c
 
902
xpmpucfg.o: ../unix/xpmpucfg.c
 
903
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmpucfg.c
 
904
xpmputty.o: ../unix/xpmputty.c
 
905
        $(CC) $(COMPAT) $(CFLAGS) $(XFLAGS) -c ../unix/xpmputty.c
828
906
 
829
 
version.o: FORCE;
830
 
FORCE:
 
907
version.o: FORCE
831
908
        if test -z "$(VER)" && (cd ..; md5sum -c manifest); then \
832
909
                $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat ../version.def` -c ../version.c; \
833
910
        else \
861
938
 
862
939
clean:
863
940
        rm -f *.o plink pscp psftp pterm putty puttygen puttytel
 
941
 
 
942
FORCE: