... and here's the rest of r6820. Ahem.
[u/mdw/putty] / Recipe
CommitLineData
7603011f 1# -*- makefile -*-
2#
3# This file describes which PuTTY programs are made up from which
4# object and resource files. It is processed into the various
5# Makefiles by means of a Perl script. Makefile changes should
6# really be made by editing this file and/or the Perl script, not
7# by editing the actual Makefiles.
8
e35fb54b 9# ------------------------------------------------------------
10# Top-level configuration.
11
12# Overall project name.
13!name putty
14# Locations and types of output Makefiles.
6da41155 15!makefile vc windows/Makefile.vc
16!makefile vcproj windows/MSVC
17!makefile cygwin windows/Makefile.cyg
18!makefile borland windows/Makefile.bor
19!makefile lcc windows/Makefile.lcc
e35fb54b 20!makefile gtk unix/Makefile.gtk
76d3a838 21!makefile ac unix/Makefile.in
e35fb54b 22!makefile mpw mac/Makefile.mpw
1ddda1ca 23!makefile osx macosx/Makefile
985b6440 24!makefile devcppproj windows/DEVCPP
cdd310bb 25# Source directories.
26!srcdir charset/
6da41155 27!srcdir windows/
cdd310bb 28!srcdir unix/
29!srcdir mac/
1ddda1ca 30!srcdir macosx/
e35fb54b 31
7603011f 32# Help text added to the top of each Makefile, with /D converted
33# into -D as appropriate for the particular Makefile.
34
35!begin help
36#
37# Extra options you can set:
38#
976374cd 39# - VER="/DSNAPSHOT=1999-01-25 /DSVN_REV=1234"
7603011f 40# Generates executables whose About box report them as being a
976374cd 41# development snapshot. SVN_REV is a Subversion revision number.
7603011f 42#
43# - VER=/DRELEASE=0.43
44# Generates executables whose About box report them as being a
45# release version.
46#
d2ab2f0b 47# - COMPAT=/DAUTO_WINSOCK (Windows only)
7603011f 48# Causes PuTTY to assume that <windows.h> includes its own WinSock
49# header file, so that it won't try to include <winsock.h>.
50#
d2ab2f0b 51# - COMPAT=/DWINSOCK_TWO (Windows only)
7603011f 52# Causes the PuTTY utilities to include <winsock2.h> instead of
53# <winsock.h>, except Plink which _needs_ WinSock 2 so it already
54# does this.
55#
d2ab2f0b 56# - COMPAT=/DNO_SECURITY (Windows only)
7603011f 57# Disables Pageant's use of <aclapi.h>, which is not available
7c521ac9 58# with some development environments (such as older versions of
59# the Cygwin/mingw GNU toolchain). This means that Pageant
7603011f 60# won't care about the local user ID of processes accessing it; a
61# version of Pageant built with this option will therefore refuse
62# to run under NT-series OSes on security grounds (although it
63# will run fine on Win95-series OSes where there is no access
64# control anyway).
65#
d2ab2f0b 66# - COMPAT=/DNO_MULTIMON (Windows only)
7603011f 67# Disables PuTTY's use of <multimon.h>, which is not available
68# with some development environments. This means that PuTTY's
69# full-screen mode (configurable to work on Alt-Enter) will
70# not behave usefully in a multi-monitor environment.
71#
72# Note that this definition is always enabled in the Cygwin
73# build, since at the time of writing this <multimon.h> is
74# known not to be available in Cygwin.
75#
4e95a413 76# - RCFL=/DNO_MANIFESTS (Windows only)
d2ab2f0b 77# Disables inclusion of XML application manifests in the PuTTY
78# binaries. This may be necessary to build for 64-bit Windows;
79# the manifests are only included to use the XP GUI style on
80# Windows XP, and the architecture tags are a lie on 64-bit.
81#
05581745 82# - COMPAT=/DNO_IPV6
83# Disables PuTTY's ability to make IPv6 connections, enabling
84# it to compile under development environments which do not
85# support IPv6 in their header files.
86#
d2ab2f0b 87# - COMPAT=/DMSVC4 (Windows only)
7603011f 88# - RCFL=/DMSVC4
89# Makes a couple of minor changes so that PuTTY compiles using
90# MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
91#
d2ab2f0b 92# - RCFL=/DASCIICTLS (Windows only)
7603011f 93# Uses ASCII rather than Unicode to specify the tab control in
94# the resource file. Probably most useful when compiling with
95# Cygnus/mingw32, whose resource compiler may have less of a
96# problem with it.
97#
4044fc45 98# - XFLAGS=/DTELNET_DEFAULT
99# Causes PuTTY to default to the Telnet protocol (in the absence
100# of Default Settings and so on to the contrary). Normally PuTTY
101# will default to SSH.
102#
7603011f 103# - XFLAGS=/DDEBUG
104# Causes PuTTY to enable internal debugging.
105#
106# - XFLAGS=/DMALLOC_LOG
107# Causes PuTTY to emit a file called putty_mem.log, logging every
108# memory allocation and free, so you can track memory leaks.
109#
d2ab2f0b 110# - XFLAGS=/DMINEFIELD (Windows only)
7603011f 111# Causes PuTTY to use a custom memory allocator, similar in
112# concept to Electric Fence, in place of regular malloc(). Wastes
113# huge amounts of RAM, but should cause heap-corruption bugs to
114# show up as GPFs at the point of failure rather than appearing
115# later on as second-level damage.
116#
117!end
118
e35fb54b 119# ------------------------------------------------------------
120# Additional text added verbatim to each individual Makefile.
121
122# Hack to force version.o to be rebuilt always.
123!begin vc
124version.obj: *.c *.h *.rc
d8284c29 125 cl $(VER) $(CFLAGS) /c ..\version.c
e35fb54b 126!end
6da41155 127!specialobj vc version
e35fb54b 128!begin cygwin
6da41155 129version.o: FORCE
d8284c29 130 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c
e35fb54b 131!end
6da41155 132!specialobj cygwin version
e35fb54b 133!begin borland
134version.obj: FORCE
d8284c29 135 bcc32 $(VER) $(CFLAGS) /c ..\version.c
e35fb54b 136!end
6da41155 137!specialobj borland version
e35fb54b 138!begin lcc
0aafb388 139version.obj: FORCE
d8284c29 140 lcc $(VER) $(CFLAGS) /c ..\version.c
e35fb54b 141!end
6da41155 142!specialobj lcc version
e35fb54b 143# For Unix, we also need the gross MD5 hack that causes automatic
144# version number selection in release source archives.
145!begin gtk
976374cd 146version.o: FORCE
e35fb54b 147 if test -z "$(VER)" && (cd ..; md5sum -c manifest); then \
d8284c29 148 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat ../version.def` -c ../version.c; \
e35fb54b 149 else \
d8284c29 150 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c; \
e35fb54b 151 fi
152!end
6da41155 153!specialobj gtk version
e35fb54b 154
976374cd 155# Add VER to Windows resource targets, and force them to be rebuilt every
156# time, on the assumption that they will contain version information.
157!begin vc vars
158RCFLAGS = $(RCFLAGS) $(VER)
159!end
160!begin cygwin vars
161# XXX GNU-ism, but it's probably all right for a Cygwin/MinGW Makfile.
162RCFLAGS += $(patsubst -D%,--define %,$(VER))
163!end
164!begin borland vars
165# Borland doesn't support +=. This probably shouldn't work, but seems to.
166RCFLAGS = $(RCFLAGS) $(VER)
167!end
168!begin lcc vars
169RCFLAGS += $(VER)
170!end
171!forceobj putty.res
172!forceobj puttytel.res
173!forceobj plink.res
174!forceobj pscp.res
175!forceobj psftp.res
176!forceobj pageant.res
177!forceobj puttygen.res
178
e35fb54b 179# `make install' target for Unix.
180!begin gtk
181install:
182 $(INSTALL_PROGRAM) -m 755 plink $(DESTDIR)$(bindir)/plink
183 $(INSTALL_PROGRAM) -m 755 pscp $(DESTDIR)$(bindir)/pscp
184 $(INSTALL_PROGRAM) -m 755 psftp $(DESTDIR)$(bindir)/psftp
185 $(INSTALL_PROGRAM) -m 755 pterm $(DESTDIR)$(bindir)/pterm
e693a2d9 186 if test -n "$(UTMP_GROUP)"; then \
187 chgrp $(UTMP_GROUP) $(DESTDIR)$(bindir)/pterm && \
188 chmod 2755 $(DESTDIR)$(bindir)/pterm; \
189 elif test -n "$(UTMP_USER)"; then \
190 chown $(UTMP_USER) $(DESTDIR)$(bindir)/pterm && \
191 chmod 4755 $(DESTDIR)$(bindir)/pterm; \
192 fi
e35fb54b 193 $(INSTALL_PROGRAM) -m 755 putty $(DESTDIR)$(bindir)/putty
194 $(INSTALL_PROGRAM) -m 755 puttygen $(DESTDIR)$(bindir)/puttygen
195 $(INSTALL_PROGRAM) -m 755 puttytel $(DESTDIR)$(bindir)/puttytel
196 $(INSTALL_DATA) -m 644 ../doc/plink.1 $(DESTDIR)$(man1dir)/plink.1
197 $(INSTALL_DATA) -m 644 ../doc/pscp.1 $(DESTDIR)$(man1dir)/pscp.1
198 $(INSTALL_DATA) -m 644 ../doc/psftp.1 $(DESTDIR)$(man1dir)/psftp.1
199 $(INSTALL_DATA) -m 644 ../doc/pterm.1 $(DESTDIR)$(man1dir)/pterm.1
200 $(INSTALL_DATA) -m 644 ../doc/putty.1 $(DESTDIR)$(man1dir)/putty.1
201 $(INSTALL_DATA) -m 644 ../doc/puttygen.1 $(DESTDIR)$(man1dir)/puttygen.1
202 $(INSTALL_DATA) -m 644 ../doc/puttytel.1 $(DESTDIR)$(man1dir)/puttytel.1
203
204install-strip:
205 $(MAKE) install INSTALL_PROGRAM="$(INSTALL_PROGRAM) -s"
206!end
77603464 207!begin osx vars
1ddda1ca 208CFLAGS += -DMACOSX
209!end
e35fb54b 210
211# ------------------------------------------------------------
7603011f 212# Definitions of object groups. A group name, followed by an =,
213# followed by any number of objects or other already-defined group
214# names. A line beginning `+' is assumed to continue the previous
215# line.
216
f0fccd51 217# Terminal emulator and its (platform-independent) dependencies.
218TERMINAL = terminal wcwidth ldiscucs logging tree234 minibidi
219 + config dialog
220
7603011f 221# GUI front end and terminal emulator (putty, puttytel).
6da41155 222GUITERM = TERMINAL window windlg winctrls sizetip winucs winprint
7374c779 223 + winutils wincfg sercfg
7603011f 224
f5dd8adb 225# Same thing on Unix.
1ddda1ca 226UXTERM = TERMINAL uxcfg uxucs uxprint timing
227GTKTERM = UXTERM gtkwin gtkcfg gtkdlg gtkcols gtkpanel xkeysym
228OSXTERM = UXTERM osxwin osxdlg osxctrls
1d009ae7 229
7603011f 230# Non-SSH back ends (putty, puttytel, plink).
39934deb 231NONSSH = telnet raw rlogin ldisc pinger
7603011f 232
233# SSH back end (putty, plink, pscp, psftp).
c5e438ec 234SSH = ssh sshcrc sshdes sshmd5 sshrsa sshrand sshsha sshblowf
235 + sshdh sshcrcda sshpubk sshzlib sshdss x11fwd portfwd
2ccb2fc8 236 + sshaes sshsh256 sshsh512 sshbn wildcard pinger ssharcf
6da41155 237WINSSH = SSH winnoise winpgntc
c5e438ec 238UXSSH = SSH uxnoise uxagentc
0c4b7799 239MACSSH = SSH macnoise
7603011f 240
241# SFTP implementation (pscp, psftp).
242SFTP = sftp int64 logging
243
244# Miscellaneous objects appearing in all the network utilities (not
245# Pageant or PuTTYgen).
39934deb 246MISC = timing misc version settings tree234 proxy
0edafb21 247WINMISC = MISC winstore winnet winhandl cmdline windefs winmisc winproxy
248 + wintime
aca589d9 249UXMISC = MISC uxstore uxsel uxnet cmdline uxmisc uxproxy time
1ddda1ca 250OSXMISC = MISC uxstore uxsel osxsel uxnet uxmisc uxproxy time
39934deb 251MACMISC = MISC macstore macnet mtcpnet otnet macmisc macabout pproxy
7603011f 252
2dc6356a 253# Character set library, for use in pterm.
d4413bd2 254CHARSET = sbcsdat slookup sbcs utf8 toucs fromucs xenc mimeenc macenc localenc
2dc6356a 255
7440fd44 256# Standard libraries.
7603011f 257LIBS = advapi32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib
258 + shell32.lib winmm.lib imm32.lib winspool.lib
7603011f 259
f33ba69e 260# Network backend sets. This also brings in the relevant attachment
261# to proxy.c depending on whether we're crypto-avoidant or not.
262BE_ALL = be_all cproxy
263BE_NOSSH = be_nossh nocproxy
264BE_SSH = be_none cproxy
265BE_NONE = be_none nocproxy
7374c779 266# More backend sets, with the additional Windows serial-port module.
267W_BE_ALL = be_all_s winser cproxy
268W_BE_NOSSH = be_nos_s winser nocproxy
f33ba69e 269
e35fb54b 270# ------------------------------------------------------------
7603011f 271# Definitions of actual programs. The program name, followed by a
272# colon, followed by a list of objects. Also in the list may be the
f7f27309 273# keywords [G] for Windows GUI app, [C] for Console app, [X] for
dddf640d 274# X/GTK Unix app, [U] for command-line Unix app, [M] for Macintosh app.
7603011f 275
7374c779 276putty : [G] GUITERM NONSSH WINSSH W_BE_ALL WINMISC putty.res LIBS
277puttytel : [G] GUITERM NONSSH W_BE_NOSSH WINMISC puttytel.res LIBS
278plink : [C] winplink wincons NONSSH WINSSH W_BE_ALL logging WINMISC
7440fd44 279 + plink.res LIBS
bf1e6912 280pscp : [C] pscp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
281 + pscp.res LIBS
dee42491 282psftp : [C] psftp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
976374cd 283 + psftp.res LIBS
7603011f 284
6da41155 285pageant : [G] winpgnt sshrsa sshpubk sshdes sshbn sshmd5 version tree234
286 + misc sshaes sshsha winpgntc sshdss sshsh512 winutils winmisc
b492c4d7 287 + pageant.res LIBS
7603011f 288
6da41155 289puttygen : [G] winpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
290 + sshrand winnoise sshsha winstore misc winctrls sshrsa sshdss winmisc
5d17ccfc 291 + sshpubk sshaes sshsh512 import winutils puttygen.res tree234
aca589d9 292 + notiming LIBS wintime
f7f27309 293
1ddda1ca 294pterm : [X] GTKTERM uxmisc misc ldisc settings uxpty uxsel BE_NONE uxstore
aca589d9 295 + uxsignal CHARSET cmdline uxpterm version time
1ddda1ca 296putty : [X] GTKTERM uxmisc misc ldisc settings uxsel BE_ALL uxstore
4397c725 297 + uxsignal CHARSET uxputty NONSSH UXSSH UXMISC ux_x11
1ddda1ca 298puttytel : [X] GTKTERM uxmisc misc ldisc settings uxsel BE_NOSSH
4397c725 299 + uxstore uxsignal CHARSET uxputty NONSSH UXMISC
c5e438ec 300
4397c725 301plink : [U] uxplink uxcons NONSSH UXSSH BE_ALL logging UXMISC uxsignal ux_x11
cd6ca416 302
47a6b94c 303puttygen : [U] cmdgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
304 + sshrand uxnoise sshsha misc sshrsa sshdss uxcons uxstore uxmisc
aca589d9 305 + sshpubk sshaes sshsh512 import puttygen.res time tree234 uxgen
306 + notiming
47a6b94c 307
bf1e6912 308pscp : [U] pscp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
dee42491 309psftp : [U] psftp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
d6cc41e6 310
f33ba69e 311PuTTY : [M] terminal wcwidth ldiscucs logging BE_ALL mac macdlg macevlog
0c4b7799 312 + macterm macucs mac_res.rsrc testback NONSSH MACSSH MACMISC CHARSET
68b1e05a 313 + stricmp vsnprint dialog config macctrls minibidi
f33ba69e 314PuTTYtel : [M] terminal wcwidth ldiscucs logging BE_NOSSH mac macdlg
315 + macevlog macterm macucs mac_res.rsrc testback NONSSH MACMISC
68b1e05a 316 + CHARSET stricmp vsnprint dialog config macctrls minibidi
06c24bc0 317PuTTYgen : [M] macpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
318 + sshrand macnoise sshsha macstore misc sshrsa sshdss macmisc sshpubk
217b88d1 319 + sshaes sshsh512 import macpgen.rsrc macpgkey macabout
1ddda1ca 320
321PuTTY : [MX] osxmain OSXTERM OSXMISC CHARSET BE_ALL NONSSH UXSSH
0980c4f2 322 + ux_x11 uxpty uxsignal testback putty.icns info.plist