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