~ubuntu-branches/ubuntu/hardy/gnupg/hardy-updates

« back to all changes in this revision

Viewing changes to g10/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-12-16 16:57:39 UTC
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20051216165739-v0m2d1you6hd8jho
Tags: upstream-1.4.2
ImportĀ upstreamĀ versionĀ 1.4.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003,
2
 
#               2004 Free Software Foundation, Inc.
 
1
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
2
#               2005 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, USA
19
19
 
20
20
## Process this file with automake to produce Makefile.in
21
21
 
23
23
EXTRA_DIST = options.skel
24
24
# it seems that we can't use this with automake 1.5
25
25
#OMIT_DEPENDENCIES = zlib.h zconf.h
26
 
libexecdir = @libexecdir@/@PACKAGE@
 
26
 
27
27
if ! HAVE_DOSISH_SYSTEM
28
 
AM_CFLAGS = -DGNUPG_LIBEXECDIR="\"$(libexecdir)\""
 
28
AM_CFLAGS = -DGNUPG_LIBEXECDIR="\"$(libexecdir)/@PACKAGE@\""
29
29
endif
30
30
needed_libs = ../cipher/libcipher.a ../mpi/libmpi.a ../util/libutil.a
31
31
other_libs = $(LIBICONV) $(LIBINTL) $(CAPLIBS)
32
32
 
33
 
#noinst_PROGRAMS = gpgd
34
33
bin_PROGRAMS = gpg gpgv
35
34
 
36
35
if ENABLE_BZIP2_SUPPORT
63
62
              keyid.c           \
64
63
              packet.h          \
65
64
              parse-packet.c    \
66
 
              comment.c         \
67
65
              status.c          \
68
66
              status.h          \
69
67
              plaintext.c       \
125
123
              $(common_source)  \
126
124
              verify.c          
127
125
 
128
 
#gpgd_SOURCES = gpgd.c \
129
 
#              ks-proto.h \
130
 
#              ks-proto.c \
131
 
#              ks-db.c \
132
 
#              ks-db.h \
133
 
#              $(common_source)
134
 
 
135
126
LDADD =  $(needed_libs) $(other_libs) @ZLIBS@ @W32LIBS@ @LIBREADLINE@
136
 
gpg_LDADD = $(LDADD) @DLLIBS@ @NETLIBS@ @LIBUSB@
 
127
gpg_LDADD = $(LDADD) @DLLIBS@ @NETLIBS@ @LIBUSB@ @LIBCURL@
 
128
##gpg_CPPFLAGS = @LIBCURL_CPPFLAGS@
137
129
 
138
130
$(PROGRAMS): $(needed_libs)
139
131