Pango-based font handling: combine display of adjacent characters
[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#
db6452be 76# - COMPAT=/DNO_HTMLHELP (Windows only)
77# Disables PuTTY's use of <htmlhelp.h>, which is not available
78# with some development environments. The resulting binary
79# will only look for an old-style WinHelp file (.HLP/.CNT), and
80# will ignore any .CHM file.
81#
82# Note that this definition is always enabled in the Cygwin
83# build, since at the time of writing this <htmlhelp.h> is
85aa0836 84# known not to be available in Cygwin (although you can use
85# the htmlhelp.h supplied with HTML Help Workshop).
db6452be 86#
4e95a413 87# - RCFL=/DNO_MANIFESTS (Windows only)
d2ab2f0b 88# Disables inclusion of XML application manifests in the PuTTY
89# binaries. This may be necessary to build for 64-bit Windows;
90# the manifests are only included to use the XP GUI style on
91# Windows XP, and the architecture tags are a lie on 64-bit.
92#
05581745 93# - COMPAT=/DNO_IPV6
94# Disables PuTTY's ability to make IPv6 connections, enabling
95# it to compile under development environments which do not
96# support IPv6 in their header files.
97#
42af6a67 98# - COMPAT=/DNO_GSSAPI
99# Disables PuTTY's ability to use GSSAPI functions for
100# authentication and key exchange.
101#
d2ab2f0b 102# - COMPAT=/DMSVC4 (Windows only)
7603011f 103# - RCFL=/DMSVC4
104# Makes a couple of minor changes so that PuTTY compiles using
105# MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
106#
d2ab2f0b 107# - RCFL=/DASCIICTLS (Windows only)
7603011f 108# Uses ASCII rather than Unicode to specify the tab control in
109# the resource file. Probably most useful when compiling with
110# Cygnus/mingw32, whose resource compiler may have less of a
111# problem with it.
112#
4044fc45 113# - XFLAGS=/DTELNET_DEFAULT
114# Causes PuTTY to default to the Telnet protocol (in the absence
115# of Default Settings and so on to the contrary). Normally PuTTY
116# will default to SSH.
117#
7603011f 118# - XFLAGS=/DDEBUG
119# Causes PuTTY to enable internal debugging.
120#
121# - XFLAGS=/DMALLOC_LOG
122# Causes PuTTY to emit a file called putty_mem.log, logging every
123# memory allocation and free, so you can track memory leaks.
124#
d2ab2f0b 125# - XFLAGS=/DMINEFIELD (Windows only)
7603011f 126# Causes PuTTY to use a custom memory allocator, similar in
127# concept to Electric Fence, in place of regular malloc(). Wastes
128# huge amounts of RAM, but should cause heap-corruption bugs to
129# show up as GPFs at the point of failure rather than appearing
130# later on as second-level damage.
131#
132!end
133
e35fb54b 134# ------------------------------------------------------------
135# Additional text added verbatim to each individual Makefile.
136
137# Hack to force version.o to be rebuilt always.
138!begin vc
139version.obj: *.c *.h *.rc
d8284c29 140 cl $(VER) $(CFLAGS) /c ..\version.c
e35fb54b 141!end
6da41155 142!specialobj vc version
e35fb54b 143!begin cygwin
6da41155 144version.o: FORCE
d8284c29 145 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c
e35fb54b 146!end
6da41155 147!specialobj cygwin version
e35fb54b 148!begin borland
149version.obj: FORCE
d8284c29 150 bcc32 $(VER) $(CFLAGS) /c ..\version.c
e35fb54b 151!end
6da41155 152!specialobj borland version
e35fb54b 153!begin lcc
0aafb388 154version.obj: FORCE
d8284c29 155 lcc $(VER) $(CFLAGS) /c ..\version.c
e35fb54b 156!end
6da41155 157!specialobj lcc version
e35fb54b 158# For Unix, we also need the gross MD5 hack that causes automatic
159# version number selection in release source archives.
160!begin gtk
976374cd 161version.o: FORCE
e35fb54b 162 if test -z "$(VER)" && (cd ..; md5sum -c manifest); then \
d8284c29 163 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat ../version.def` -c ../version.c; \
e35fb54b 164 else \
d8284c29 165 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c; \
e35fb54b 166 fi
167!end
6da41155 168!specialobj gtk version
e35fb54b 169
976374cd 170# Add VER to Windows resource targets, and force them to be rebuilt every
171# time, on the assumption that they will contain version information.
172!begin vc vars
42af6a67 173CFLAGS = $(CFLAGS) /DHAS_GSSAPI
976374cd 174RCFLAGS = $(RCFLAGS) $(VER)
175!end
176!begin cygwin vars
db6452be 177# XXX GNU-ism, but it's probably all right for a Cygwin/MinGW Makefile.
976374cd 178RCFLAGS += $(patsubst -D%,--define %,$(VER))
179!end
180!begin borland vars
181# Borland doesn't support +=. This probably shouldn't work, but seems to.
182RCFLAGS = $(RCFLAGS) $(VER)
183!end
184!begin lcc vars
185RCFLAGS += $(VER)
186!end
187!forceobj putty.res
188!forceobj puttytel.res
189!forceobj plink.res
190!forceobj pscp.res
191!forceobj psftp.res
192!forceobj pageant.res
193!forceobj puttygen.res
194
e35fb54b 195# `make install' target for Unix.
196!begin gtk
197install:
cd99cb07 198 mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)
e35fb54b 199 $(INSTALL_PROGRAM) -m 755 plink $(DESTDIR)$(bindir)/plink
200 $(INSTALL_PROGRAM) -m 755 pscp $(DESTDIR)$(bindir)/pscp
201 $(INSTALL_PROGRAM) -m 755 psftp $(DESTDIR)$(bindir)/psftp
202 $(INSTALL_PROGRAM) -m 755 pterm $(DESTDIR)$(bindir)/pterm
e693a2d9 203 if test -n "$(UTMP_GROUP)"; then \
204 chgrp $(UTMP_GROUP) $(DESTDIR)$(bindir)/pterm && \
205 chmod 2755 $(DESTDIR)$(bindir)/pterm; \
206 elif test -n "$(UTMP_USER)"; then \
207 chown $(UTMP_USER) $(DESTDIR)$(bindir)/pterm && \
208 chmod 4755 $(DESTDIR)$(bindir)/pterm; \
209 fi
e35fb54b 210 $(INSTALL_PROGRAM) -m 755 putty $(DESTDIR)$(bindir)/putty
211 $(INSTALL_PROGRAM) -m 755 puttygen $(DESTDIR)$(bindir)/puttygen
212 $(INSTALL_PROGRAM) -m 755 puttytel $(DESTDIR)$(bindir)/puttytel
213 $(INSTALL_DATA) -m 644 ../doc/plink.1 $(DESTDIR)$(man1dir)/plink.1
214 $(INSTALL_DATA) -m 644 ../doc/pscp.1 $(DESTDIR)$(man1dir)/pscp.1
215 $(INSTALL_DATA) -m 644 ../doc/psftp.1 $(DESTDIR)$(man1dir)/psftp.1
216 $(INSTALL_DATA) -m 644 ../doc/pterm.1 $(DESTDIR)$(man1dir)/pterm.1
217 $(INSTALL_DATA) -m 644 ../doc/putty.1 $(DESTDIR)$(man1dir)/putty.1
218 $(INSTALL_DATA) -m 644 ../doc/puttygen.1 $(DESTDIR)$(man1dir)/puttygen.1
219 $(INSTALL_DATA) -m 644 ../doc/puttytel.1 $(DESTDIR)$(man1dir)/puttytel.1
220
221install-strip:
222 $(MAKE) install INSTALL_PROGRAM="$(INSTALL_PROGRAM) -s"
223!end
77603464 224!begin osx vars
1ddda1ca 225CFLAGS += -DMACOSX
226!end
e35fb54b 227
8f5f26d2 228# Random symbols.
229!begin cygwin vars
230# _WIN32_IE is required to expose identifiers that only make sense on
231# systems with IE5+ installed, such as some arguments to SHGetFolderPath().
09644e07 232# WINVER etc perform a similar function for FlashWindowEx().
8f5f26d2 233CFLAGS += -D_WIN32_IE=0x0500
09644e07 234CFLAGS += -DWINVER=0x0500 -D_WIN32_WINDOWS=0x0410 -D_WIN32_WINNT=0x0500
8f5f26d2 235!end
236
e35fb54b 237# ------------------------------------------------------------
7603011f 238# Definitions of object groups. A group name, followed by an =,
239# followed by any number of objects or other already-defined group
240# names. A line beginning `+' is assumed to continue the previous
241# line.
242
f0fccd51 243# Terminal emulator and its (platform-independent) dependencies.
244TERMINAL = terminal wcwidth ldiscucs logging tree234 minibidi
245 + config dialog
246
7603011f 247# GUI front end and terminal emulator (putty, puttytel).
6da41155 248GUITERM = TERMINAL window windlg winctrls sizetip winucs winprint
cb2708d3 249 + winutils wincfg sercfg winhelp
7603011f 250
f5dd8adb 251# Same thing on Unix.
aef05b78 252UXTERM = TERMINAL uxcfg sercfg uxucs uxprint timing
f160b7b8 253GTKTERM = UXTERM gtkwin gtkcfg gtkdlg gtkfont gtkcols xkeysym
1ddda1ca 254OSXTERM = UXTERM osxwin osxdlg osxctrls
1d009ae7 255
7603011f 256# Non-SSH back ends (putty, puttytel, plink).
39934deb 257NONSSH = telnet raw rlogin ldisc pinger
7603011f 258
259# SSH back end (putty, plink, pscp, psftp).
c5e438ec 260SSH = ssh sshcrc sshdes sshmd5 sshrsa sshrand sshsha sshblowf
261 + sshdh sshcrcda sshpubk sshzlib sshdss x11fwd portfwd
2ccb2fc8 262 + sshaes sshsh256 sshsh512 sshbn wildcard pinger ssharcf
42af6a67 263WINSSH = SSH winnoise winpgntc wingss
264UXSSH = SSH uxnoise uxagentc uxgss
0c4b7799 265MACSSH = SSH macnoise
7603011f 266
267# SFTP implementation (pscp, psftp).
268SFTP = sftp int64 logging
269
270# Miscellaneous objects appearing in all the network utilities (not
271# Pageant or PuTTYgen).
39934deb 272MISC = timing misc version settings tree234 proxy
0edafb21 273WINMISC = MISC winstore winnet winhandl cmdline windefs winmisc winproxy
274 + wintime
aca589d9 275UXMISC = MISC uxstore uxsel uxnet cmdline uxmisc uxproxy time
1ddda1ca 276OSXMISC = MISC uxstore uxsel osxsel uxnet uxmisc uxproxy time
39934deb 277MACMISC = MISC macstore macnet mtcpnet otnet macmisc macabout pproxy
7603011f 278
2dc6356a 279# Character set library, for use in pterm.
d4413bd2 280CHARSET = sbcsdat slookup sbcs utf8 toucs fromucs xenc mimeenc macenc localenc
2dc6356a 281
7440fd44 282# Standard libraries.
7603011f 283LIBS = advapi32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib
977e6795 284 + shell32.lib winmm.lib imm32.lib winspool.lib
7603011f 285
f33ba69e 286# Network backend sets. This also brings in the relevant attachment
287# to proxy.c depending on whether we're crypto-avoidant or not.
288BE_ALL = be_all cproxy
289BE_NOSSH = be_nossh nocproxy
290BE_SSH = be_none cproxy
291BE_NONE = be_none nocproxy
7374c779 292# More backend sets, with the additional Windows serial-port module.
293W_BE_ALL = be_all_s winser cproxy
294W_BE_NOSSH = be_nos_s winser nocproxy
aef05b78 295# And with the Unix serial-port module.
296U_BE_ALL = be_all_s uxser cproxy
297U_BE_NOSSH = be_nos_s uxser nocproxy
f33ba69e 298
e35fb54b 299# ------------------------------------------------------------
7603011f 300# Definitions of actual programs. The program name, followed by a
301# colon, followed by a list of objects. Also in the list may be the
f7f27309 302# keywords [G] for Windows GUI app, [C] for Console app, [X] for
dddf640d 303# X/GTK Unix app, [U] for command-line Unix app, [M] for Macintosh app.
7603011f 304
8def70c3 305putty : [G] GUITERM NONSSH WINSSH W_BE_ALL WINMISC winx11 putty.res LIBS
7374c779 306puttytel : [G] GUITERM NONSSH W_BE_NOSSH WINMISC puttytel.res LIBS
307plink : [C] winplink wincons NONSSH WINSSH W_BE_ALL logging WINMISC
8def70c3 308 + winx11 plink.res LIBS
bf1e6912 309pscp : [C] pscp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
310 + pscp.res LIBS
dee42491 311psftp : [C] psftp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
976374cd 312 + psftp.res LIBS
7603011f 313
6da41155 314pageant : [G] winpgnt sshrsa sshpubk sshdes sshbn sshmd5 version tree234
fedd99b6 315 + misc sshaes sshsha winpgntc sshdss sshsh256 sshsh512 winutils
316 + winmisc winhelp pageant.res LIBS
7603011f 317
6da41155 318puttygen : [G] winpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
319 + sshrand winnoise sshsha winstore misc winctrls sshrsa sshdss winmisc
fae1a71b 320 + sshpubk sshaes sshsh256 sshsh512 import winutils puttygen.res
321 + tree234 notiming winhelp LIBS wintime
f7f27309 322
1ddda1ca 323pterm : [X] GTKTERM uxmisc misc ldisc settings uxpty uxsel BE_NONE uxstore
533c7491 324 + uxsignal CHARSET cmdline uxpterm version time xpmpterm xpmptcfg
aef05b78 325putty : [X] GTKTERM uxmisc misc ldisc settings uxsel U_BE_ALL uxstore
533c7491 326 + uxsignal CHARSET uxputty NONSSH UXSSH UXMISC ux_x11 xpmputty
327 + xpmpucfg
aef05b78 328puttytel : [X] GTKTERM uxmisc misc ldisc settings uxsel U_BE_NOSSH
533c7491 329 + uxstore uxsignal CHARSET uxputty NONSSH UXMISC xpmputty xpmpucfg
c5e438ec 330
aef05b78 331plink : [U] uxplink uxcons NONSSH UXSSH U_BE_ALL logging UXMISC uxsignal
332 + ux_x11
cd6ca416 333
47a6b94c 334puttygen : [U] cmdgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
335 + sshrand uxnoise sshsha misc sshrsa sshdss uxcons uxstore uxmisc
fae1a71b 336 + sshpubk sshaes sshsh256 sshsh512 import puttygen.res time tree234
337 + uxgen notiming
47a6b94c 338
bf1e6912 339pscp : [U] pscp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
dee42491 340psftp : [U] psftp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
d6cc41e6 341
f33ba69e 342PuTTY : [M] terminal wcwidth ldiscucs logging BE_ALL mac macdlg macevlog
0c4b7799 343 + macterm macucs mac_res.rsrc testback NONSSH MACSSH MACMISC CHARSET
68b1e05a 344 + stricmp vsnprint dialog config macctrls minibidi
f33ba69e 345PuTTYtel : [M] terminal wcwidth ldiscucs logging BE_NOSSH mac macdlg
346 + macevlog macterm macucs mac_res.rsrc testback NONSSH MACMISC
68b1e05a 347 + CHARSET stricmp vsnprint dialog config macctrls minibidi
06c24bc0 348PuTTYgen : [M] macpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
349 + sshrand macnoise sshsha macstore misc sshrsa sshdss macmisc sshpubk
fae1a71b 350 + sshaes sshsh256 sshsh512 import macpgen.rsrc macpgkey macabout
1ddda1ca 351
aef05b78 352PuTTY : [MX] osxmain OSXTERM OSXMISC CHARSET U_BE_ALL NONSSH UXSSH
0980c4f2 353 + ux_x11 uxpty uxsignal testback putty.icns info.plist