~ubuntu-branches/ubuntu/precise/gnupg2/precise-proposed

« back to all changes in this revision

Viewing changes to assuan/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Urlichs
  • Date: 2006-01-24 04:31:42 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060124043142-pbg192or6qxv3yk2
Tags: 1.9.20-1
* New Upstream version. Closes:#306890,#344530
  * Closes:#320490: gpg-protect-tool fails to decrypt PKCS-12 files 
* Depend on libopensc2-dev, not -1-. Closes:#348106

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Assuan Makefile
 
2
# Copyright (C) 2001, 2002 Free Software Foundation, Inc.
 
3
#
 
4
# This file is part of Assuan.
 
5
#
 
6
# Assuan is free software; you can redistribute it and/or modify it
 
7
# under the terms of the GNU Lesser General Public License as
 
8
# published by the Free Software Foundation; either version 2.1 of
 
9
# the License, or (at your option) any later version.
 
10
#
 
11
# Assuan is distributed in the hope that it will be useful, but
 
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
# Lesser General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU Lesser General Public
 
17
# License along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA 
 
19
 
 
20
## Process this file with automake to produce Makefile.in
 
21
 
 
22
EXTRA_DIST = mkerrors
 
23
INCLUDES = -I.. -I$(top_srcdir)/include
 
24
BUILT_SOURCES = assuan-errors.c
 
25
MOSTLYCLEANFILES = assuan-errors.c
 
26
 
 
27
noinst_LIBRARIES = libassuan.a
 
28
 
 
29
 
 
30
#libassuan_a_LDFLAGS =
 
31
libassuan_a_SOURCES = \
 
32
        assuan.h \
 
33
        assuan-defs.h \
 
34
        assuan-util.c \
 
35
        assuan-errors.c \
 
36
        assuan-buffer.c \
 
37
        assuan-handler.c \
 
38
        assuan-inquire.c \
 
39
        assuan-listen.c \
 
40
        assuan-connect.c \
 
41
        assuan-client.c \
 
42
        assuan-pipe-server.c \
 
43
        assuan-socket-server.c \
 
44
        assuan-pipe-connect.c \
 
45
        assuan-socket-connect.c 
 
46
 
 
47
 
 
48
assuan-errors.c : assuan.h
 
49
        $(srcdir)/mkerrors < $(srcdir)/assuan.h > assuan-errors.c