~ubuntu-branches/ubuntu/raring/gnupg2/raring-security

« back to all changes in this revision

Viewing changes to agent/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-11-06 11:25:58 UTC
  • mfrom: (1.1.16) (7.1.8 raring-proposed)
  • Revision ID: package-import@ubuntu.com-20121106112558-lkpndvv4gqthgrn4
Tags: 2.0.19-1ubuntu1
* Resynchronize on Debian, remaining changes:
  - Add udev rules to give gpg access to some smartcard readers;
    Debian #543217.
    . debian/gnupg2.dev: udev rules to set ACLs on SCM smartcard readers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
# it under the terms of the GNU General Public License as published by
7
7
# the Free Software Foundation; either version 3 of the License, or
8
8
# (at your option) any later version.
9
 
 
9
#
10
10
# GnuPG is distributed in the hope that it will be useful,
11
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
13
# GNU General Public License for more details.
14
 
 
14
#
15
15
# You should have received a copy of the GNU General Public License
16
16
# along with this program; if not, see <http://www.gnu.org/licenses/>.
17
17
 
22
22
noinst_PROGRAMS = $(TESTS)
23
23
 
24
24
# EXTRA_DIST = gpg-agent.ico gpg-agent-resource.rc
 
25
EXTRA_DIST = ChangeLog-2011
25
26
 
26
27
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/common -I$(top_srcdir)/intl
27
28
 
72
73
gpg_protect_tool_SOURCES = \
73
74
        protect-tool.c \
74
75
        protect.c \
75
 
        minip12.c minip12.h 
 
76
        minip12.c minip12.h
76
77
 
77
78
gpg_protect_tool_CFLAGS = $(AM_CFLAGS) $(LIBASSUAN_CFLAGS)
78
79
gpg_protect_tool_LDADD = $(common_libs) $(LIBGCRYPT_LIBS) $(LIBASSUAN_LIBS) \
101
102
t_common_ldadd = $(common_libs) \
102
103
                 $(LIBGCRYPT_LIBS) $(GPG_ERROR_LIBS) $(LIBINTL) $(LIBICONV)
103
104
 
104
 
t_protect_SOURCES = t-protect.c protect.c 
 
105
t_protect_SOURCES = t-protect.c protect.c
105
106
t_protect_LDADD = $(t_common_ldadd)
106
107
 
107
108