]> asedeno.scripts.mit.edu Git - PuTTY_svn.git/blob - Recipe
Enable xterm mouse reporting of wheel actions in GTK.
[PuTTY_svn.git] / Recipe
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 unix unix/Makefile.ux
22 !makefile am unix/Makefile.am
23 !makefile osx macosx/Makefile
24 !makefile devcppproj windows/DEVCPP
25 !makefile vstudio10 windows/VS2010
26 !makefile vstudio12 windows/VS2012
27 # Source directories.
28 !srcdir charset/
29 !srcdir windows/
30 !srcdir unix/
31 !srcdir macosx/
32
33 # Help text added to the top of each Makefile, with /D converted
34 # into -D as appropriate for the particular Makefile.
35
36 !begin help
37 #
38 # Extra options you can set:
39 #
40 #  - VER="/DSNAPSHOT=1999-01-25 /DSVN_REV=1234"
41 #      Generates executables whose About box report them as being a
42 #      development snapshot. SVN_REV is a Subversion revision number.
43 #
44 #  - VER=/DRELEASE=0.43
45 #      Generates executables whose About box report them as being a
46 #      release version.
47 #
48 #  - COMPAT=/DAUTO_WINSOCK (Windows only)
49 #      Causes PuTTY to assume that <windows.h> includes its own WinSock
50 #      header file, so that it won't try to include <winsock.h>.
51 #
52 #  - COMPAT=/DWINSOCK_TWO (Windows only)
53 #      Causes the PuTTY utilities to include <winsock2.h> instead of
54 #      <winsock.h>, except Plink which _needs_ WinSock 2 so it already
55 #      does this.
56 #
57 #  - COMPAT=/DNO_SECURITY (Windows only)
58 #      Disables Pageant's use of <aclapi.h>, which is not available
59 #      with some development environments (such as older versions of
60 #      the Cygwin/mingw GNU toolchain). This means that Pageant
61 #      won't care about the local user ID of processes accessing it; a
62 #      version of Pageant built with this option will therefore refuse
63 #      to run under NT-series OSes on security grounds (although it
64 #      will run fine on Win95-series OSes where there is no access
65 #      control anyway).
66 #
67 #  - COMPAT=/DNO_MULTIMON (Windows only)
68 #      Disables PuTTY's use of <multimon.h>, which is not available
69 #      with some development environments. This means that PuTTY's
70 #      full-screen mode (configurable to work on Alt-Enter) will
71 #      not behave usefully in a multi-monitor environment.
72 #
73 #      Note that this definition is always enabled in the Cygwin
74 #      build, since at the time of writing this <multimon.h> is
75 #      known not to be available in Cygwin.
76 #
77 #  - COMPAT=/DNO_HTMLHELP (Windows only)
78 #      Disables PuTTY's use of <htmlhelp.h>, which is not available
79 #      with some development environments. The resulting binary
80 #      will only look for an old-style WinHelp file (.HLP/.CNT), and
81 #      will ignore any .CHM file.
82 #
83 #      Note that this definition is always enabled in the Cygwin
84 #      build, since at the time of writing this <htmlhelp.h> is
85 #      known not to be available in Cygwin (although you can use
86 #      the htmlhelp.h supplied with HTML Help Workshop).
87 #
88 #  - RCFL=/DNO_MANIFESTS (Windows only)
89 #      Disables inclusion of XML application manifests in the PuTTY
90 #      binaries. This may be necessary to build for 64-bit Windows;
91 #      the manifests are only included to use the XP GUI style on
92 #      Windows XP, and the architecture tags are a lie on 64-bit.
93 #
94 #  - COMPAT=/DNO_IPV6
95 #      Disables PuTTY's ability to make IPv6 connections, enabling
96 #      it to compile under development environments which do not
97 #      support IPv6 in their header files.
98 #
99 #  - COMPAT=/DNO_GSSAPI
100 #      Disables PuTTY's ability to use GSSAPI functions for
101 #      authentication and key exchange.
102 #
103 #  - COMPAT=/DSTATIC_GSSAPI
104 #      Causes PuTTY to try to link statically against the GSSAPI
105 #      library instead of the default of doing it at run time.
106 #
107 #  - COMPAT=/DMSVC4 (Windows only)
108 #  - RCFL=/DMSVC4
109 #      Makes a couple of minor changes so that PuTTY compiles using
110 #      MSVC 4. You will also need /DNO_SECURITY and /DNO_MULTIMON.
111 #
112 #  - COMPAT=/DNO_SECUREZEROMEMORY (Windows only)
113 #      Disables PuTTY's use of SecureZeroMemory(), which is missing
114 #      from some environments' header files.  This is enabled by
115 #      default in the Cygwin Makefile.
116 #
117 #  - XFLAGS=/DTELNET_DEFAULT
118 #      Causes PuTTY to default to the Telnet protocol (in the absence
119 #      of Default Settings and so on to the contrary). Normally PuTTY
120 #      will default to SSH.
121 #
122 #  - XFLAGS=/DDEBUG
123 #      Causes PuTTY to enable internal debugging.
124 #
125 #  - XFLAGS=/DMALLOC_LOG
126 #      Causes PuTTY to emit a file called putty_mem.log, logging every
127 #      memory allocation and free, so you can track memory leaks.
128 #
129 #  - XFLAGS=/DMINEFIELD (Windows only)
130 #      Causes PuTTY to use a custom memory allocator, similar in
131 #      concept to Electric Fence, in place of regular malloc(). Wastes
132 #      huge amounts of RAM, but should cause heap-corruption bugs to
133 #      show up as GPFs at the point of failure rather than appearing
134 #      later on as second-level damage.
135 #
136 !end
137
138 # ------------------------------------------------------------
139 # Additional text added verbatim to each individual Makefile.
140
141 # Hack to force version.o to be rebuilt always.
142 !begin vc
143 version.obj: *.c *.h *.rc
144         cl $(VER) $(CFLAGS) /c ..\version.c
145 !end
146 !specialobj vc version
147 !begin cygwin
148 version.o: FORCE
149         $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c
150 !end
151 !specialobj cygwin version
152 !begin borland
153 version.obj: FORCE
154         bcc32 $(VER) $(CFLAGS) /c ..\version.c
155 !end
156 !specialobj borland version
157 !begin lcc
158 version.obj: FORCE
159         lcc $(VER) $(CFLAGS) /c ..\version.c
160 !end
161 !specialobj lcc version
162 # For Unix, we also need the gross MD5 hack that causes automatic
163 # version number selection in release source archives.
164 !begin gtk
165 version.o: FORCE
166         if test -z "$(VER)" && (cd ..; md5sum -c manifest); then \
167                 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) `cat ../version.def` -c ../version.c; \
168         else \
169                 $(CC) $(COMPAT) $(XFLAGS) $(CFLAGS) $(VER) -c ../version.c; \
170         fi
171 !end
172 !specialobj gtk version
173 # In the automake build, we have to do the whole job by supplying
174 # extra CFLAGS, so we have to put the if statement inside one big
175 # backtick expression. We also force rebuilding via a -D option that
176 # makes version.o include empty.h, which we construct ourselves and
177 # touch whenever any source file is updated.
178 !cflags am version $(VER) -DINCLUDE_EMPTY_H `if test -z "$(VER)" && (cd $(srcdir)/..; md5sum -c manifest >/dev/null 2>&1); then cat $(srcdir)/../version.def; else echo "$(VER)"; fi`
179 !begin am
180 BUILT_SOURCES = empty.h
181 empty.h: $(allsources)
182         echo '/* Empty file touched by automake makefile to force rebuild of version.o */' >$@
183
184 !end
185 !begin >empty.h
186 /* Empty file touched by automake makefile to force rebuild of version.o */
187 !end
188
189 # Add VER to Windows resource targets, and force them to be rebuilt every
190 # time, on the assumption that they will contain version information.
191 !begin vc vars
192 CFLAGS = $(CFLAGS) /DHAS_GSSAPI /DSECURITY_WIN32
193 RCFLAGS = $(RCFLAGS) $(VER)
194 !end
195 !begin cygwin vars
196 CFLAGS += -DSECURITY_WIN32
197 # XXX GNU-ism, but it's probably all right for a Cygwin/MinGW Makefile.
198 RCFLAGS += $(patsubst -D%,--define %,$(VER))
199 !end
200 !begin borland vars
201 # Borland doesn't support +=. This probably shouldn't work, but seems to.
202 RCFLAGS = $(RCFLAGS) $(VER)
203 !end
204 !begin lcc vars
205 RCFLAGS += $(VER)
206 !end
207 !forceobj putty.res
208 !forceobj puttytel.res
209 !forceobj plink.res
210 !forceobj pscp.res
211 !forceobj psftp.res
212 !forceobj pageant.res
213 !forceobj puttygen.res
214
215 # `make install' target for Unix.
216 !begin gtk
217 install:
218         mkdir -p $(DESTDIR)$(bindir) $(DESTDIR)$(man1dir)
219         $(INSTALL_PROGRAM) -m 755 plink $(DESTDIR)$(bindir)/plink
220         $(INSTALL_PROGRAM) -m 755 pscp $(DESTDIR)$(bindir)/pscp
221         $(INSTALL_PROGRAM) -m 755 psftp $(DESTDIR)$(bindir)/psftp
222         $(INSTALL_PROGRAM) -m 755 pterm $(DESTDIR)$(bindir)/pterm
223         if test -n "$(UTMP_GROUP)"; then \
224           chgrp $(UTMP_GROUP) $(DESTDIR)$(bindir)/pterm && \
225             chmod 2755 $(DESTDIR)$(bindir)/pterm; \
226         elif test -n "$(UTMP_USER)"; then \
227           chown $(UTMP_USER) $(DESTDIR)$(bindir)/pterm && \
228             chmod 4755 $(DESTDIR)$(bindir)/pterm; \
229         fi
230         $(INSTALL_PROGRAM) -m 755 putty $(DESTDIR)$(bindir)/putty
231         $(INSTALL_PROGRAM) -m 755 puttygen $(DESTDIR)$(bindir)/puttygen
232         $(INSTALL_PROGRAM) -m 755 puttytel $(DESTDIR)$(bindir)/puttytel
233         $(INSTALL_DATA) -m 644 ../doc/plink.1 $(DESTDIR)$(man1dir)/plink.1
234         $(INSTALL_DATA) -m 644 ../doc/pscp.1 $(DESTDIR)$(man1dir)/pscp.1
235         $(INSTALL_DATA) -m 644 ../doc/psftp.1 $(DESTDIR)$(man1dir)/psftp.1
236         $(INSTALL_DATA) -m 644 ../doc/pterm.1 $(DESTDIR)$(man1dir)/pterm.1
237         $(INSTALL_DATA) -m 644 ../doc/putty.1 $(DESTDIR)$(man1dir)/putty.1
238         $(INSTALL_DATA) -m 644 ../doc/puttygen.1 $(DESTDIR)$(man1dir)/puttygen.1
239         $(INSTALL_DATA) -m 644 ../doc/puttytel.1 $(DESTDIR)$(man1dir)/puttytel.1
240
241 install-strip:
242         $(MAKE) install INSTALL_PROGRAM="$(INSTALL_PROGRAM) -s"
243 !end
244 !begin osx vars
245 CFLAGS += -DMACOSX
246 !end
247
248 # List the man pages for the automake makefile.
249 !begin am
250 man1_MANS = ../doc/plink.1 ../doc/pscp.1 ../doc/psftp.1 ../doc/pterm.1 \
251             ../doc/putty.1 ../doc/puttygen.1 ../doc/puttytel.1
252 !end
253
254 # In automake, chgrp/chmod pterm after installation, if configured to.
255 !begin am
256 if HAVE_SETID_CMD
257 install-exec-local:
258         @SETID_CMD@ $(bindir)/pterm
259         chmod @SETID_MODE@ $(bindir)/pterm
260 endif
261 !end
262
263 # Random symbols.
264 !begin cygwin vars
265 # _WIN32_IE is required to expose identifiers that only make sense on
266 # systems with IE5+ installed, such as some arguments to SHGetFolderPath().
267 # WINVER etc perform a similar function for FlashWindowEx().
268 CFLAGS += -D_WIN32_IE=0x0500
269 CFLAGS += -DWINVER=0x0500 -D_WIN32_WINDOWS=0x0410 -D_WIN32_WINNT=0x0500
270 !end
271
272 # ------------------------------------------------------------
273 # Definitions of object groups. A group name, followed by an =,
274 # followed by any number of objects or other already-defined group
275 # names. A line beginning `+' is assumed to continue the previous
276 # line.
277
278 # Terminal emulator and its (platform-independent) dependencies.
279 TERMINAL = terminal wcwidth ldiscucs logging tree234 minibidi
280          + config dialog conf
281
282 # GUI front end and terminal emulator (putty, puttytel).
283 GUITERM  = TERMINAL window windlg winctrls sizetip winucs winprint
284          + winutils wincfg sercfg winhelp winjump
285
286 # Same thing on Unix.
287 UXTERM   = TERMINAL uxcfg sercfg uxucs uxprint timing callback
288 GTKTERM  = UXTERM gtkwin gtkcfg gtkdlg gtkfont gtkcols xkeysym
289 OSXTERM  = UXTERM osxwin osxdlg osxctrls
290
291 # Non-SSH back ends (putty, puttytel, plink).
292 NONSSH   = telnet raw rlogin ldisc pinger
293
294 # SSH back end (putty, plink, pscp, psftp).
295 SSH      = ssh sshcrc sshdes sshmd5 sshrsa sshrand sshsha sshblowf
296          + sshdh sshcrcda sshpubk sshzlib sshdss x11fwd portfwd
297          + sshaes sshsh256 sshsh512 sshbn wildcard pinger ssharcf
298          + sshgssc pgssapi sshshare
299 WINSSH   = SSH winnoise winsecur winpgntc wingss winshare winnps winnpc
300          + winhsock errsock
301 UXSSH    = SSH uxnoise uxagentc uxgss uxshare
302
303 # SFTP implementation (pscp, psftp).
304 SFTP     = sftp int64 logging
305
306 # Miscellaneous objects appearing in all the network utilities (not
307 # Pageant or PuTTYgen).
308 MISC     = timing callback misc version settings tree234 proxy conf
309 WINMISC  = MISC winstore winnet winhandl cmdline windefs winmisc winproxy
310          + wintime winhsock errsock
311 UXMISC   = MISC uxstore uxsel uxnet cmdline uxmisc uxproxy time
312 OSXMISC  = MISC uxstore uxsel osxsel uxnet uxmisc uxproxy time
313
314 # Character set library, for use in pterm.
315 CHARSET  = sbcsdat slookup sbcs utf8 toucs fromucs xenc mimeenc macenc localenc
316
317 # Standard libraries.
318 LIBS     = advapi32.lib user32.lib gdi32.lib comctl32.lib comdlg32.lib
319          + shell32.lib winmm.lib imm32.lib winspool.lib ole32.lib
320
321 # Network backend sets. This also brings in the relevant attachment
322 # to proxy.c depending on whether we're crypto-avoidant or not.
323 BE_ALL   = be_all cproxy
324 BE_NOSSH = be_nossh nocproxy
325 BE_SSH   = be_ssh cproxy
326 BE_NONE  = be_none nocproxy
327 # More backend sets, with the additional Windows serial-port module.
328 W_BE_ALL = be_all_s winser cproxy
329 W_BE_NOSSH = be_nos_s winser nocproxy
330 # And with the Unix serial-port module.
331 U_BE_ALL = be_all_s uxser cproxy
332 U_BE_NOSSH = be_nos_s uxser nocproxy
333
334 # ------------------------------------------------------------
335 # Definitions of actual programs. The program name, followed by a
336 # colon, followed by a list of objects. Also in the list may be the
337 # keywords [G] for Windows GUI app, [C] for Console app, [X] for
338 # X/GTK Unix app, [U] for command-line Unix app.
339
340 putty    : [G] GUITERM NONSSH WINSSH W_BE_ALL WINMISC winx11 putty.res LIBS
341 puttytel : [G] GUITERM NONSSH W_BE_NOSSH WINMISC puttytel.res nogss LIBS
342 plink    : [C] winplink wincons NONSSH WINSSH W_BE_ALL logging WINMISC
343          + winx11 plink.res winnojmp noterm LIBS
344 pscp     : [C] pscp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
345          + pscp.res winnojmp LIBS
346 psftp    : [C] psftp winsftp wincons WINSSH BE_SSH SFTP wildcard WINMISC
347          + psftp.res winnojmp LIBS
348
349 pageant  : [G] winpgnt sshrsa sshpubk sshdes sshbn sshmd5 version tree234
350          + misc sshaes sshsha winsecur winpgntc sshdss sshsh256 sshsh512
351          + winutils winmisc winhelp conf pageant.res LIBS
352
353 puttygen : [G] winpgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
354          + sshrand winnoise sshsha winstore misc winctrls sshrsa sshdss winmisc
355          + sshpubk sshaes sshsh256 sshsh512 import winutils puttygen.res
356          + tree234 notiming winhelp winnojmp conf LIBS wintime
357
358 pterm    : [X] GTKTERM uxmisc misc ldisc settings uxpty uxsel BE_NONE uxstore
359          + uxsignal CHARSET cmdline uxpterm version time xpmpterm xpmptcfg
360          + nogss
361 putty    : [X] GTKTERM uxmisc misc ldisc settings uxsel U_BE_ALL uxstore
362          + uxsignal CHARSET uxputty NONSSH UXSSH UXMISC ux_x11 xpmputty
363          + xpmpucfg
364 puttytel : [X] GTKTERM uxmisc misc ldisc settings uxsel U_BE_NOSSH
365          + uxstore uxsignal CHARSET uxputty NONSSH UXMISC xpmputty xpmpucfg
366          + nogss
367
368 plink    : [U] uxplink uxcons NONSSH UXSSH U_BE_ALL logging UXMISC uxsignal
369          + ux_x11 noterm
370
371 puttygen : [U] cmdgen sshrsag sshdssg sshprime sshdes sshbn sshmd5 version
372          + sshrand uxnoise sshsha misc sshrsa sshdss uxcons uxstore uxmisc
373          + sshpubk sshaes sshsh256 sshsh512 import puttygen.res time tree234
374          + uxgen notiming conf
375
376 pscp     : [U] pscp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
377 psftp    : [U] psftp uxsftp uxcons UXSSH BE_SSH SFTP wildcard UXMISC
378
379 PuTTY    : [MX] osxmain OSXTERM OSXMISC CHARSET U_BE_ALL NONSSH UXSSH
380          + ux_x11 uxpty uxsignal testback putty.icns info.plist