~x2go/x2go/pinentry-x2go_master

« back to all changes in this revision

Viewing changes to gtk/Makefile.am

  • Committer: Mike Gabriel
  • Date: 2012-06-13 12:55:37 UTC
  • Revision ID: git-v1:d2060291d5cc7beb92f78168e48ececfe765d552
Strip code project down to its essentials, remove a lot of unneeded cruft. / Make code tree fully build with autotools, see README file for further info.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile.am - PIN entry GTK+ frontend.
2
 
# Copyright (C) 2002 g10 Code GmbH
3
 
#
4
 
# This file is part of PINENTRY.
5
 
#
6
 
# PINENTRY is free software; you can redistribute it and/or modify
7
 
# it under the terms of the GNU General Public License as published by
8
 
# the Free Software Foundation; either version 2 of the License, or
9
 
# (at your option) any later version.
10
 
11
 
# PINENTRY is distributed in the hope that it will be useful,
12
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
# GNU General Public License for more details.
15
 
16
 
# You should have received a copy of the GNU General Public License
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
19
 
 
20
 
## Process this file with automake to produce Makefile.in
21
 
 
22
 
EXTRA_DIST = Manifest
23
 
 
24
 
bin_PROGRAMS = pinentry-gtk
25
 
 
26
 
if FALLBACK_CURSES
27
 
ncurses_include = $(NCURSES_INCLUDE)
28
 
libcurses = ../pinentry/libpinentry-curses.a $(LIBCURSES) $(LIBICONV)
29
 
else
30
 
ncurses_include =
31
 
libcurses =
32
 
endif
33
 
 
34
 
AM_CPPFLAGS = $(GLIB_CFLAGS) $(GTK_CFLAGS) $(ncurses_include) \
35
 
        -I$(top_srcdir)/secmem -I$(top_srcdir)/pinentry
36
 
LDADD = ../pinentry/libpinentry.a ../assuan/libassuan.a ../secmem/libsecmem.a \
37
 
        $(LIBCAP) $(GTK_LIBS) $(libcurses)
38
 
 
39
 
pinentry_gtk_SOURCES = pinentry-gtk.c \
40
 
        gtksecentry.c gtksecentry.h