2009-09-23 12:28:41 +02:00
|
|
|
# g13/Makefile.am
|
|
|
|
# Copyright (C) 2009 Free Software Foundation, Inc.
|
|
|
|
#
|
|
|
|
# This file is part of GnuPG.
|
|
|
|
#
|
|
|
|
# GnuPG is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GnuPG is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
|
|
|
|
bin_PROGRAMS = g13
|
|
|
|
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/common
|
|
|
|
|
|
|
|
include $(top_srcdir)/am/cmacros.am
|
|
|
|
|
2009-10-17 21:15:15 +02:00
|
|
|
AM_CFLAGS = $(LIBGCRYPT_CFLAGS) $(LIBASSUAN_CFLAGS) $(PTH_CFLAGS)
|
2009-09-23 12:28:41 +02:00
|
|
|
|
|
|
|
g13_SOURCES = \
|
2009-09-30 17:28:38 +02:00
|
|
|
g13.c g13.h \
|
|
|
|
keyblob.h \
|
|
|
|
utils.c utils.h \
|
2009-10-14 19:06:10 +02:00
|
|
|
server.c server.h \
|
2009-09-30 17:28:38 +02:00
|
|
|
create.c create.h \
|
2009-10-13 21:17:24 +02:00
|
|
|
mount.c mount.h \
|
2009-10-15 19:20:41 +02:00
|
|
|
mountinfo.c mountinfo.h \
|
2009-09-30 17:28:38 +02:00
|
|
|
call-gpg.c call-gpg.h \
|
2009-10-13 21:17:24 +02:00
|
|
|
runner.c runner.h \
|
2009-09-30 17:28:38 +02:00
|
|
|
backend.c backend.h \
|
|
|
|
be-encfs.c be-encfs.h \
|
|
|
|
be-truecrypt.c be-truecrypt.h
|
|
|
|
|
|
|
|
g13_LDADD = $(libcommonpth) ../jnlib/libjnlib.a ../gl/libgnu.a \
|
2009-10-17 21:15:15 +02:00
|
|
|
$(LIBGCRYPT_LIBS) $(LIBASSUAN_LIBS) $(PTH_LIBS) \
|
2009-09-30 17:28:38 +02:00
|
|
|
$(GPG_ERROR_LIBS) $(LIBINTL)
|
2009-09-23 12:28:41 +02:00
|
|
|
|