1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
# Makefile.am for putty under Unix with Autoconf/Automake.
#
# This file was created by `mkfiles.pl' from the `Recipe' file.
# DO NOT EDIT THIS FILE DIRECTLY; edit Recipe or mkfiles.pl instead.
AUTOMAKE_OPTIONS = subdir-objects
allsources = be_all_s.c be_none.c be_nos_s.c be_ssh.c callback.c \
charset/charset.h charset/enum.c charset/fromucs.c \
charset/internal.h charset/localenc.c charset/macenc.c \
charset/mimeenc.c charset/sbcs.c charset/sbcsdat.c \
charset/slookup.c charset/toucs.c charset/utf8.c \
charset/xenc.c cmdgen.c cmdline.c conf.c config.c cproxy.c \
dialog.c dialog.h errsock.c import.c int64.c int64.h ldisc.c \
ldisc.h ldiscucs.c licence.h logging.c macosx/osx.h \
macosx/osxclass.h macosx/osxctrls.m macosx/osxdlg.m \
macosx/osxmain.m macosx/osxsel.m macosx/osxwin.m minibidi.c \
misc.c misc.h miscucs.c network.h nocproxy.c nogss.c \
noshare.c noterm.c notiming.c pgssapi.c pgssapi.h pinger.c \
portfwd.c proxy.c proxy.h pscp.c psftp.c psftp.h putty.h \
puttymem.h puttyps.h raw.c rlogin.c sercfg.c settings.c \
sftp.c sftp.h ssh.c ssh.h sshaes.c ssharcf.c sshblowf.c \
sshbn.c sshbn.h sshcrc.c sshcrcda.c sshdes.c sshdh.c \
sshdss.c sshdssg.c sshgss.h sshgssc.c sshgssc.h sshmd5.c \
sshprime.c sshpubk.c sshrand.c sshrsa.c sshrsag.c sshsh256.c \
sshsh512.c sshsha.c sshshare.c sshzlib.c storage.h telnet.c \
terminal.c terminal.h testback.c time.c timing.c tree234.c \
tree234.h unix/gtkcfg.c unix/gtkcols.c unix/gtkcols.h \
unix/gtkdlg.c unix/gtkfont.c unix/gtkfont.h unix/gtkwin.c \
unix/unix.h unix/ux_x11.c unix/uxagentc.c unix/uxcfg.c \
unix/uxcons.c unix/uxgen.c unix/uxgss.c unix/uxmisc.c \
unix/uxnet.c unix/uxnoise.c unix/uxpeer.c unix/uxplink.c \
unix/uxprint.c unix/uxproxy.c unix/uxpterm.c unix/uxpty.c \
unix/uxputty.c unix/uxsel.c unix/uxser.c unix/uxsftp.c \
unix/uxshare.c unix/uxsignal.c unix/uxstore.c unix/uxucs.c \
unix/xkeysym.c unix/xpmptcfg.c unix/xpmpterm.c \
unix/xpmpucfg.c unix/xpmputty.c version.c version.h \
wcwidth.c wildcard.c windows/pageant.rc windows/plink.rc \
windows/pscp.rc windows/psftp.rc windows/putty.rc \
windows/puttygen.rc windows/puttytel.rc windows/rcstuff.h \
windows/sizetip.c windows/version.rc2 windows/win_res.h \
windows/win_res.rc2 windows/wincapi.c windows/wincapi.h \
windows/wincfg.c windows/wincons.c windows/winctrls.c \
windows/windefs.c windows/windlg.c windows/window.c \
windows/wingss.c windows/winhandl.c windows/winhelp.c \
windows/winhelp.h windows/winhsock.c windows/winjump.c \
windows/winmisc.c windows/winnet.c windows/winnoise.c \
windows/winnojmp.c windows/winnpc.c windows/winnps.c \
windows/winpgen.c windows/winpgnt.c windows/winpgntc.c \
windows/winplink.c windows/winprint.c windows/winproxy.c \
windows/winsecur.c windows/winsecur.h windows/winser.c \
windows/winsftp.c windows/winshare.c windows/winstore.c \
windows/winstuff.h windows/wintime.c windows/winucs.c \
windows/winutils.c windows/winx11.c x11fwd.c
if HAVE_GTK
bin_PROGRAMS = plink pscp psftp puttygen pterm putty puttytel
else
bin_PROGRAMS = plink pscp psftp puttygen
endif
AM_CPPFLAGS = -I$(srcdir)/./ -I$(srcdir)/charset/ -I$(srcdir)/windows/ \
-I$(srcdir)/unix/ -I$(srcdir)/macosx/
if HAVE_GTK
AM_CFLAGS = $(GTK_CFLAGS) $(COMPAT) $(XFLAGS) $(WARNINGOPTS)
else
AM_CFLAGS = $(COMPAT) $(XFLAGS) $(WARNINGOPTS)
endif
noinst_LIBRARIES =
plink_SOURCES = be_all_s.c callback.c cmdline.c conf.c cproxy.c ldisc.c \
logging.c misc.c noterm.c pgssapi.c pinger.c portfwd.c \
proxy.c raw.c rlogin.c settings.c ssh.c sshaes.c ssharcf.c \
sshblowf.c sshbn.c sshcrc.c sshcrcda.c sshdes.c sshdh.c \
sshdss.c sshgssc.c sshmd5.c sshpubk.c sshrand.c sshrsa.c \
sshsh256.c sshsh512.c sshsha.c sshshare.c sshzlib.c telnet.c \
time.c timing.c tree234.c unix/ux_x11.c unix/uxagentc.c \
unix/uxcons.c unix/uxgss.c unix/uxmisc.c unix/uxnet.c \
unix/uxnoise.c unix/uxpeer.c unix/uxplink.c unix/uxproxy.c \
unix/uxsel.c unix/uxser.c unix/uxshare.c unix/uxsignal.c \
unix/uxstore.c version.c wildcard.c x11fwd.c
pscp_SOURCES = be_ssh.c callback.c cmdline.c conf.c cproxy.c int64.c \
logging.c misc.c pgssapi.c pinger.c portfwd.c proxy.c pscp.c \
settings.c sftp.c ssh.c sshaes.c ssharcf.c sshblowf.c \
sshbn.c sshcrc.c sshcrcda.c sshdes.c sshdh.c sshdss.c \
sshgssc.c sshmd5.c sshpubk.c sshrand.c sshrsa.c sshsh256.c \
sshsh512.c sshsha.c sshshare.c sshzlib.c time.c timing.c \
tree234.c unix/uxagentc.c unix/uxcons.c unix/uxgss.c \
unix/uxmisc.c unix/uxnet.c unix/uxnoise.c unix/uxpeer.c \
unix/uxproxy.c unix/uxsel.c unix/uxsftp.c unix/uxshare.c \
unix/uxstore.c version.c wildcard.c x11fwd.c
psftp_SOURCES = be_ssh.c callback.c cmdline.c conf.c cproxy.c int64.c \
logging.c misc.c pgssapi.c pinger.c portfwd.c proxy.c \
psftp.c settings.c sftp.c ssh.c sshaes.c ssharcf.c \
sshblowf.c sshbn.c sshcrc.c sshcrcda.c sshdes.c sshdh.c \
sshdss.c sshgssc.c sshmd5.c sshpubk.c sshrand.c sshrsa.c \
sshsh256.c sshsh512.c sshsha.c sshshare.c sshzlib.c time.c \
timing.c tree234.c unix/uxagentc.c unix/uxcons.c \
unix/uxgss.c unix/uxmisc.c unix/uxnet.c unix/uxnoise.c \
unix/uxpeer.c unix/uxproxy.c unix/uxsel.c unix/uxsftp.c \
unix/uxshare.c unix/uxstore.c version.c wildcard.c x11fwd.c
if HAVE_GTK
pterm_SOURCES = be_none.c callback.c charset/fromucs.c charset/localenc.c \
charset/macenc.c charset/mimeenc.c charset/sbcs.c \
charset/sbcsdat.c charset/slookup.c charset/toucs.c \
charset/utf8.c charset/xenc.c cmdline.c conf.c config.c \
dialog.c ldisc.c ldiscucs.c logging.c minibidi.c misc.c \
miscucs.c nocproxy.c nogss.c sercfg.c settings.c terminal.c \
time.c timing.c tree234.c unix/gtkcfg.c unix/gtkcols.c \
unix/gtkdlg.c unix/gtkfont.c unix/gtkwin.c unix/uxcfg.c \
unix/uxmisc.c unix/uxprint.c unix/uxpterm.c unix/uxpty.c \
unix/uxsel.c unix/uxsignal.c unix/uxstore.c unix/uxucs.c \
unix/xkeysym.c unix/xpmptcfg.c unix/xpmpterm.c version.c \
wcwidth.c
pterm_LDADD = $(GTK_LIBS)
endif
if HAVE_GTK
putty_SOURCES = be_all_s.c callback.c charset/fromucs.c charset/localenc.c \
charset/macenc.c charset/mimeenc.c charset/sbcs.c \
charset/sbcsdat.c charset/slookup.c charset/toucs.c \
charset/utf8.c charset/xenc.c cmdline.c conf.c config.c \
cproxy.c dialog.c ldisc.c ldiscucs.c logging.c minibidi.c \
misc.c miscucs.c pgssapi.c pinger.c portfwd.c proxy.c raw.c \
rlogin.c sercfg.c settings.c ssh.c sshaes.c ssharcf.c \
sshblowf.c sshbn.c sshcrc.c sshcrcda.c sshdes.c sshdh.c \
sshdss.c sshgssc.c sshmd5.c sshpubk.c sshrand.c sshrsa.c \
sshsh256.c sshsh512.c sshsha.c sshshare.c sshzlib.c telnet.c \
terminal.c time.c timing.c tree234.c unix/gtkcfg.c \
unix/gtkcols.c unix/gtkdlg.c unix/gtkfont.c unix/gtkwin.c \
unix/ux_x11.c unix/uxagentc.c unix/uxcfg.c unix/uxgss.c \
unix/uxmisc.c unix/uxnet.c unix/uxnoise.c unix/uxpeer.c \
unix/uxprint.c unix/uxproxy.c unix/uxputty.c unix/uxsel.c \
unix/uxser.c unix/uxshare.c unix/uxsignal.c unix/uxstore.c \
unix/uxucs.c unix/xkeysym.c unix/xpmpucfg.c unix/xpmputty.c \
version.c wcwidth.c wildcard.c x11fwd.c
putty_LDADD = $(GTK_LIBS)
endif
puttygen_SOURCES = cmdgen.c conf.c import.c misc.c notiming.c sshaes.c \
sshbn.c sshdes.c sshdss.c sshdssg.c sshmd5.c sshprime.c \
sshpubk.c sshrand.c sshrsa.c sshrsag.c sshsh256.c sshsh512.c \
sshsha.c time.c tree234.c unix/uxcons.c unix/uxgen.c \
unix/uxmisc.c unix/uxnoise.c unix/uxstore.c version.c
if HAVE_GTK
puttytel_SOURCES = be_nos_s.c callback.c charset/fromucs.c \
charset/localenc.c charset/macenc.c charset/mimeenc.c \
charset/sbcs.c charset/sbcsdat.c charset/slookup.c \
charset/toucs.c charset/utf8.c charset/xenc.c cmdline.c \
conf.c config.c dialog.c ldisc.c ldiscucs.c logging.c \
minibidi.c misc.c miscucs.c nocproxy.c nogss.c pinger.c \
proxy.c raw.c rlogin.c sercfg.c settings.c telnet.c \
terminal.c time.c timing.c tree234.c unix/gtkcfg.c \
unix/gtkcols.c unix/gtkdlg.c unix/gtkfont.c unix/gtkwin.c \
unix/uxcfg.c unix/uxmisc.c unix/uxnet.c unix/uxpeer.c \
unix/uxprint.c unix/uxproxy.c unix/uxputty.c unix/uxsel.c \
unix/uxser.c unix/uxsignal.c unix/uxstore.c unix/uxucs.c \
unix/xkeysym.c unix/xpmpucfg.c unix/xpmputty.c version.c \
wcwidth.c
puttytel_LDADD = $(GTK_LIBS)
endif
man1_MANS = doc/plink.1 doc/pscp.1 doc/psftp.1 doc/pterm.1 \
doc/putty.1 doc/puttygen.1 doc/puttytel.1
if HAVE_SETID_CMD
install-exec-local:
@SETID_CMD@ $(bindir)/pterm
chmod @SETID_MODE@ $(bindir)/pterm
endif
|