~ubuntu-branches/debian/sid/filezilla/sid

« back to all changes in this revision

Viewing changes to src/putty/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Adam Cécile (Le_Vert)
  • Date: 2008-07-05 21:00:24 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080705210024-mvzp21zlyheschi6
Tags: 3.0.11.1-1
* wxWidgets 2.8 just entered unstable ! Upload to unstable.
* New upstream release.
* Bump Standards-Version to 3.8.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
SUBDIRS = $(FRONTEND) .
9
9
 
10
 
bin_PROGRAMS = fzsftp
11
 
 
12
 
fzsftp_SOURCES = ssh.c sshcrc.c sshdes.c sshmd5.c sshrsa.c sshrand.c \
13
 
                 sshsha.c sshblowf.c sshdh.c sshcrcda.c sshpubk.c sshzlib.c \
14
 
                 sshdss.c x11fwd.c portfwd.c sshaes.c sshsh256.c sshsh512.c sshbn.c \
 
10
noinst_LIBRARIES = libfzputtycommon.a
 
11
 
 
12
libfzputtycommon_a_SOURCES = misc.c \
 
13
                             sshaes.c \
 
14
                             sshdes.c \
 
15
                             sshdss.c \
 
16
                             sshbn.c \
 
17
                             sshmd5.c \
 
18
                             sshpubk.c \
 
19
                             sshrand.c \
 
20
                             sshrsa.c \
 
21
                             sshsh256.c \
 
22
                             sshsh512.c \
 
23
                             sshsha.c \
 
24
                             fzprintf.c
 
25
 
 
26
bin_PROGRAMS = fzsftp fzputtygen
 
27
 
 
28
fzsftp_SOURCES = ssh.c sshcrc.c \
 
29
                 sshsha.c sshblowf.c sshdh.c sshcrcda.c sshzlib.c \
 
30
                 sshdss.c x11fwd.c portfwd.c \
15
31
                 wildcard.c pinger.c ssharcf.c \
16
32
                 sftp.c int64.c logging.c \
17
33
                 be_none.c cproxy.c \
18
34
                 psftp.c cmdline.c \
19
 
                 timing.c misc.c version.c settings.c tree234.c proxy.c \
 
35
                 timing.c version.c settings.c tree234.c proxy.c \
20
36
                 fzsftp.c
21
37
 
22
 
noinst_HEADERS = fzsftp.h int64.h misc.h network.h proxy.h psftp.h putty.h \
 
38
fzputtygen_SOURCES = cmdgen.c \
 
39
                     import.c \
 
40
                     notiming.c
 
41
 
 
42
noinst_HEADERS = fzprintf.h \
 
43
                 fzsftp.h \
 
44
                 int64.h misc.h network.h proxy.h psftp.h putty.h \
23
45
                 puttymem.h puttyps.h sftp.h ssh.h storage.h tree234.h
24
46
 
25
47
if USE_RESOURCEFILE
28
50
 
29
51
INCLUDES = -I$(srcdir)/$(FRONTEND) -I../../config.h
30
52
 
 
53
fzsftp_LDADD = libfzputtycommon.a
 
54
 
31
55
if SFTP_UNIX
 
56
  libfzputtycommon_a_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
 
57
 
32
58
  fzsftp_SOURCES += time.c
33
 
  fzsftp_LDADD = unix/libfzsftp_ux.a
 
59
  fzsftp_LDADD += unix/libfzsftp_ux.a unix/libfzputtycommon_ux.a
34
60
  fzsftp_CPPFLAGS = $(AM_CPPFLAGS) -D_FILE_OFFSET_BITS=64
 
61
 
 
62
  fzputtygen_SOURCES += tree234.c
 
63
  fzputtygen_CPPFLAGS = $(AM_CPPFLAGS)
 
64
  fzputtygen_LDADD = unix/libfzputtycommon_ux.a libfzputtycommon.a
35
65
endif
36
66
 
37
67
if SFTP_MINGW
 
68
  libfzputtycommon_a_CFLAGS = $(AM_CFLAGS) -D_WINDOWS
 
69
 
38
70
  fzsftp_SOURCES += pproxy.c
39
 
  fzsftp_CFLAGS = $(AM_CFLAGS) -D_WINDOWS
40
 
  fzsftp_LDADD = windows/libfzsftp_win.a $(RESOURCEFILE)
 
71
  fzsftp_CPPFLAGS = $(AM_CPPFLAGS) -D_WINDOWS
 
72
  fzsftp_LDADD += windows/libfzsftp_win.a windows/libfzputtycommon_win.a $(RESOURCEFILE)
 
73
 
 
74
  fzputtygen_CPPFLAGS = $(AM_CPPFLAGS) -D_WINDOWS
 
75
  fzputtygen_LDADD = windows/libfzputtycommon_win.a libfzputtycommon.a
41
76
endif
42
77
 
43
78
if MACAPPBUNDLE
47
82
$(top_builddir)/FileZilla.app/Contents/MacOS/fzsftp$(EXEEXT): fzsftp
48
83
        mkdir -p $(top_builddir)/FileZilla.app/Contents/MacOS
49
84
        cp -f fzsftp $(top_builddir)/FileZilla.app/Contents/MacOS/fzsftp
 
85
        cp -f fzputtygen $(top_builddir)/FileZilla.app/Contents/MacOS/fzputtygen