~ubuntu-branches/ubuntu/feisty/gnupg2/feisty

« back to all changes in this revision

Viewing changes to g10/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2006-07-11 11:38:13 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060711113813-zaw7unlbuh7gyxtl
Tags: 1.9.21-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
2
 
#               2003  Free Software Foundation, Inc.
 
2
#               2003, 2006  Free Software Foundation, Inc.
3
3
#
4
4
# This file is part of GnuPG.
5
5
#
15
15
16
16
# You should have received a copy of the GNU General Public License
17
17
# along with this program; if not, write to the Free Software
18
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
18
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
 
19
# USA.
19
20
 
20
21
## Process this file with automake to produce Makefile.in
21
22
 
26
27
 
27
28
include $(top_srcdir)/am/cmacros.am
28
29
 
29
 
AM_CFLAGS = $(LIBGCRYPT_CFLAGS)
 
30
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) -Wno-pointer-sign
30
31
 
31
32
needed_libs = ../gl/libgnu.a ../common/libcommon.a ../jnlib/libjnlib.a
32
33
 
33
34
bin_PROGRAMS = gpg2 gpgv2
34
35
 
35
36
common_source =  \
36
 
              global.h gpg.h    \
 
37
              gpg.h             \
37
38
              build-packet.c    \
38
39
              compress.c        \
 
40
              compress-bz2.c    \
39
41
              filter.h          \
40
42
              free-packet.c     \
41
43
              getkey.c          \
55
57
              keyid.c           \
56
58
              packet.h          \
57
59
              parse-packet.c    \
58
 
              comment.c         \
59
60
              status.c          \
60
61
              status.h          \
61
62
              plaintext.c       \
63
64
              keylist.c         \
64
65
              pkglue.c pkglue.h 
65
66
 
66
 
gpg2_SOURCES  = g10.c           \
 
67
gpg2_SOURCES  = gpg.c           \
67
68
              $(common_source)  \
68
69
              pkclist.c         \
69
70
              skclist.c         \
88
89
              tdbio.h           \
89
90
              delkey.c          \
90
91
              keygen.c          \
91
 
              pipemode.c        \
92
92
              helptext.c        \
93
93
              keyserver.c       \
94
94
              keyserver-internal.h \
108
108
#              ks-db.h \
109
109
#              $(common_source)
110
110
 
111
 
LDADD =  $(needed_libs) @LIBINTL@ @CAPLIBS@ @W32LIBS@
 
111
LDADD =  $(needed_libs) $(ZLIBS) @LIBINTL@ @CAPLIBS@ @W32LIBS@ 
112
112
gpg2_LDADD = $(LIBGCRYPT_LIBS) $(LDADD) -lassuan -lgpg-error
113
113
gpgv2_LDADD = $(LIBGCRYPT_LIBS) $(LDADD) -lassuan -lgpg-error
114
114