www.winputty.com
[u/mdw/putty] / Recipe
... / ...
CommitLineData
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
9# ------------------------------------------------------------
10# Top-level configuration.
11
12# Overall project name.
13!name putty
14# Locations and types of output Makefiles.
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
20!makefile gtk unix/Makefile.gtk
21!makefile ac unix/Makefile.in
22!makefile mpw mac/Makefile.mpw
23!makefile osx macosx/Makefile
24!makefile devcppproj windows/DEVCPP
25# Source directories.
26!srcdir charset/
27!srcdir windows/
28!srcdir unix/
29!srcdir mac/
30!srcdir macosx/
31
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#
39# - VER="/DSNAPSHOT=1999-01-25 /DSVN_REV=1234"
40# Generates executables whose About box report them as being a
41# development snapshot. SVN_REV is a Subversion revision number.
42#
43# - VER=/DRELEASE=0.43
44# Generates executables whose About box report them as being a
45# release version.
46#
47# - COMPAT=/DAUTO_WINSOCK (Windows only)
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#
51# - COMPAT=/DWINSOCK_TWO (Windows only)
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#
56# - COMPAT=/DNO_SECURITY (Windows only)
57# Disables Pageant's use of <aclapi.h>, which is not available
58# with some development environments (such as older versions of
59# the Cygwin/mingw GNU toolchain). This means that Pageant
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#
66# - COMPAT=/DNO_MULTIMON (Windows only)
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#
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
84# known not to be available in Cygwin (although you can use
85# the htmlhelp.h supplied with HTML Help Workshop).
86#
87# - RCFL=/DNO_MANIFESTS (Windows only)
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#
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#
98# - COMPAT=/DMSVC4 (Windows only)
99# - RCFL=/DMSVC4
100# Makes a couple of minor changes so that PuTTY compiles using
101# MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
102#
103# - RCFL=/DASCIICTLS (Windows only)
104# Uses ASCII rather than Unicode to specify the tab control in
105# the resource file. Probably most useful when compiling with
106# Cygnus/mingw32, whose resource compiler may have less of a
107# problem with it.
108#
109# - XFLAGS=/DTELNET_DEFAULT
110# Causes PuTTY to default to the Telnet protocol (in the absence
111# of Default Settings and so on to the contrary). Normally PuTTY
112# will default to SSH.
113#
114# - XFLAGS=/DDEBUG
115# Causes PuTTY to enable internal debugging.
116#
117# - XFLAGS=/DMALLOC_LOG
118# Causes PuTTY to emit a file called putty_mem.log, logging every
119# memory allocation and free, so you can track memory leaks.
120#
121# - XFLAGS=/DMINEFIELD (Windows only)
122# Causes PuTTY to use a custom memory allocator, similar in
123# concept to Electric Fence, in place of regular malloc(). Wastes
124# huge amounts of RAM, but should cause heap-corruption bugs to
125# show up as GPFs at the point of failure rather than appearing
126# later on as second-level damage.
127#
128!end
129
130# ------------------------------------------------------------
131# Additional text added verbatim to each individual Makefile.
132
133# Hack to force version.o to be rebuilt always.
134!begin vc
135version.obj: *.c *.h *.rc
136 cl $(VER) $(CFLAGS) /c ..\version.c
137!end
138!specialobj vc version
139!begin cygwin
140version.o: FORCE
141 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c
142!end
143!specialobj cygwin version
144!begin borland
145version.obj: FORCE
146 bcc32 $(VER) $(CFLAGS) /c ..\version.c
147!end
148!specialobj borland version
149!begin lcc
150version.obj: FORCE
151 lcc $(VER) $(CFLAGS) /c ..\version.c
152!end
153!specialobj lcc version
154# For Unix, we also need the gross MD5 hack that causes automatic
155# version number selection in release source archives.
156!begin gtk
157version.o: FORCE
158 if test -z "$(VER)" && (cd ..; md5sum -c manifest); then \
159 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat ../version.def` -c ../version.c; \
160 else \
161 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c; \
162 fi
163!end
164!specialobj gtk version
165
166# Add VER to Windows resource targets, and force them to be rebuilt every
167# time, on the assumption that they will contain version information.
168!begin vc vars
169RCFLAGS = $(RCFLAGS) $(VER)
170!end
171!begin cygwin vars
172# XXX GNU-ism, but it's probably all right for a Cygwin/MinGW Makefile.
173RCFLAGS += $(patsubst -D%,--define %,$(VER))
174!end
175!begin borland vars
176# Borland doesn't support +=. This probably shouldn't work, but seems to.
177RCFLAGS = $(RCFLAGS) $(VER)
178!end
179!begin lcc vars
180RCFLAGS += $(VER)
181!end
182!forceobj putty.res
183!forceobj puttytel.res
184!forceobj plink.res
185!forceobj pscp.res
186!forceobj psftp.res
187!forceobj pageant.res
188!forceobj puttygen.res
189
190# `make install' target for Unix.
191!begin gtk
192install:
193 mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)
194 $(INSTALL_PROGRAM) -m 755 plink $(DESTDIR)$(bindir)/plink
195 $(INSTALL_PROGRAM) -m 755 pscp $(DESTDIR)$(bindir)/pscp
196 $(INSTALL_PROGRAM) -m 755 psftp $(DESTDIR)$(bindir)/psftp
197 $(INSTALL_PROGRAM) -m 755 pterm $(DESTDIR)$(bindir)/pterm
198 if test -n "$(UTMP_GROUP)"; then \
199 chgrp $(UTMP_GROUP) $(DESTDIR)$(bindir)/pterm && \
200 chmod 2755 $(DESTDIR)$(bindir)/pterm; \
201 elif test -n "$(UTMP_USER)"; then \
202 chown $(UTMP_USER) $(DESTDIR)$(bindir)/pterm && \
203 chmod 4755 $(DESTDIR)$(bindir)/pterm; \
204 fi
205 $(INSTALL_PROGRAM) -m 755 putty $(DESTDIR)$(bindir)/putty
206 $(INSTALL_PROGRAM) -m 755 puttygen $(DESTDIR)$(bindir)/puttygen
207 $(INSTALL_PROGRAM) -m 755 puttytel $(DESTDIR)$(bindir)/puttytel
208 $(INSTALL_DATA) -m 644 ../doc/plink.1 $(DESTDIR)$(man1dir)/plink.1
209 $(INSTALL_DATA) -m 644 ../doc/pscp.1 $(DESTDIR)$(man1dir)/pscp.1
210 $(INSTALL_DATA) -m 644 ../doc/psftp.1 $(DESTDIR)$(man1dir)/psftp.1
211 $(INSTALL_DATA) -m 644 ../doc/pterm.1 $(DESTDIR)$(man1dir)/pterm.1
212 $(INSTALL_DATA) -m 644 ../doc/putty.1 $(DESTDIR)$(man1dir)/putty.1
213 $(INSTALL_DATA) -m 644 ../doc/puttygen.1 $(DESTDIR)$(man1dir)/puttygen.1
214 $(INSTALL_DATA) -m 644 ../doc/puttytel.1 $(DESTDIR)$(man1dir)/puttytel.1
215
216install-strip:
217 $(MAKE) install INSTALL_PROGRAM="$(INSTALL_PROGRAM) -s"
218!end
219!begin osx vars
220CFLAGS += -DMACOSX
221!end
222
223# Random symbols.
224!begin cygwin vars
225# _WIN32_IE is required to expose identifiers that only make sense on
226# systems with IE5+ installed, such as some arguments to SHGetFolderPath().
227# WINVER etc perform a similar function for FlashWindowEx().
228CFLAGS += -D_WIN32_IE=0x0500
229CFLAGS += -DWINVER=0x0500 -D_WIN32_WINDOWS=0x0410 -D_WIN32_WINNT=0x0500
230!end
231
232# ------------------------------------------------------------
233# Definitions of object groups. A group name, followed by an =,
234# followed by any number of objects or other already-defined group
235# names. A line beginning `+' is assumed to continue the previous
236# line.
237
238# Terminal emulator and its (platform-independent) dependencies.
239TERMINAL = terminal wcwidth ldiscucs logging tree234 minibidi
240 + config dialog
241
242# GUI front end and terminal emulator (putty, puttytel).
243GUITERM = TERMINAL window windlg winctrls sizetip winucs winprint
244 + winutils wincfg sercfg winhelp
245
246# Same thing on Unix.
247UXTERM = TERMINAL uxcfg sercfg uxucs uxprint timing
248GTKTERM = UXTERM gtkwin gtkcfg gtkdlg gtkfont gtkcols xkeysym
249OSXTERM = UXTERM osxwin osxdlg osxctrls
250
251# Non-SSH back ends (putty, puttytel, plink).
252NONSSH = telnet raw rlogin ldisc pinger
253
254# SSH back end (putty, plink, pscp, psftp).
255SSH = ssh sshcrc sshdes sshmd5 sshrsa sshrand sshsha sshblowf
256 + sshdh sshcrcda sshpubk sshzlib sshdss x11fwd portfwd
257 + sshaes sshsh256 sshsh512 sshbn wildcard pinger ssharcf
258WINSSH = SSH winnoise winpgntc
259UXSSH = SSH uxnoise uxagentc
260MACSSH = SSH macnoise
261
262# SFTP implementation (pscp, psftp).
263SFTP = sftp int64 logging
264
265# Miscellaneous objects appearing in all the network utilities (not
266# Pageant or PuTTYgen).
267MISC = timing misc version settings tree234 proxy
268WINMISC = MISC winstore winnet winhandl cmdline windefs winmisc winproxy
269 + wintime
270UXMISC = MISC uxstore uxsel uxnet cmdline uxmisc uxproxy time
271OSXMISC = MISC uxstore uxsel osxsel uxnet uxmisc uxproxy time
272MACMISC = MISC macstore macnet mtcpnet otnet macmisc macabout pproxy
273
274# Character set library, for use in pterm.
275CHARSET = sbcsdat slookup sbcs utf8 toucs fromucs xenc mimeenc macenc localenc
276
277# Standard libraries.
278LIBS = advapi32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib
279 + shell32.lib winmm.lib imm32.lib winspool.lib
280
281# Network backend sets. This also brings in the relevant attachment
282# to proxy.c depending on whether we're crypto-avoidant or not.
283BE_ALL = be_all cproxy
284BE_NOSSH = be_nossh nocproxy
285BE_SSH = be_none cproxy
286BE_NONE = be_none nocproxy
287# More backend sets, with the additional Windows serial-port module.
288W_BE_ALL = be_all_s winser cproxy
289W_BE_NOSSH = be_nos_s winser nocproxy
290# And with the Unix serial-port module.
291U_BE_ALL = be_all_s uxser cproxy
292U_BE_NOSSH = be_nos_s uxser nocproxy
293
294# ------------------------------------------------------------
295# Definitions of actual programs. The program name, followed by a
296# colon, followed by a list of objects. Also in the list may be the
297# keywords [G] for Windows GUI app, [C] for Console app, [X] for
298# X/GTK Unix app, [U] for command-line Unix app, [M] for Macintosh app.
299
300putty : [G] GUITERM NONSSH WINSSH W_BE_ALL WINMISC putty.res LIBS
301puttytel : [G] GUITERM NONSSH W_BE_NOSSH WINMISC puttytel.res LIBS
302plink : [C] winplink wincons NONSSH WINSSH W_BE_ALL logging WINMISC
303 + plink.res LIBS
304pscp : [C] pscp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
305 + pscp.res LIBS
306psftp : [C] psftp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
307 + psftp.res LIBS
308
309pageant : [G] winpgnt sshrsa sshpubk sshdes sshbn sshmd5 version tree234
310 + misc sshaes sshsha winpgntc sshdss sshsh256 sshsh512 winutils
311 + winmisc winhelp pageant.res LIBS
312
313puttygen : [G] winpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
314 + sshrand winnoise sshsha winstore misc winctrls sshrsa sshdss winmisc
315 + sshpubk sshaes sshsh256 sshsh512 import winutils puttygen.res
316 + tree234 notiming winhelp LIBS wintime
317
318pterm : [X] GTKTERM uxmisc misc ldisc settings uxpty uxsel BE_NONE uxstore
319 + uxsignal CHARSET cmdline uxpterm version time xpmpterm xpmptcfg
320putty : [X] GTKTERM uxmisc misc ldisc settings uxsel U_BE_ALL uxstore
321 + uxsignal CHARSET uxputty NONSSH UXSSH UXMISC ux_x11 xpmputty
322 + xpmpucfg
323puttytel : [X] GTKTERM uxmisc misc ldisc settings uxsel U_BE_NOSSH
324 + uxstore uxsignal CHARSET uxputty NONSSH UXMISC xpmputty xpmpucfg
325
326plink : [U] uxplink uxcons NONSSH UXSSH U_BE_ALL logging UXMISC uxsignal
327 + ux_x11
328
329puttygen : [U] cmdgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
330 + sshrand uxnoise sshsha misc sshrsa sshdss uxcons uxstore uxmisc
331 + sshpubk sshaes sshsh256 sshsh512 import puttygen.res time tree234
332 + uxgen notiming
333
334pscp : [U] pscp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
335psftp : [U] psftp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
336
337PuTTY : [M] terminal wcwidth ldiscucs logging BE_ALL mac macdlg macevlog
338 + macterm macucs mac_res.rsrc testback NONSSH MACSSH MACMISC CHARSET
339 + stricmp vsnprint dialog config macctrls minibidi
340PuTTYtel : [M] terminal wcwidth ldiscucs logging BE_NOSSH mac macdlg
341 + macevlog macterm macucs mac_res.rsrc testback NONSSH MACMISC
342 + CHARSET stricmp vsnprint dialog config macctrls minibidi
343PuTTYgen : [M] macpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
344 + sshrand macnoise sshsha macstore misc sshrsa sshdss macmisc sshpubk
345 + sshaes sshsh256 sshsh512 import macpgen.rsrc macpgkey macabout
346
347PuTTY : [MX] osxmain OSXTERM OSXMISC CHARSET U_BE_ALL NONSSH UXSSH
348 + ux_x11 uxpty uxsignal testback putty.icns info.plist