Blame lib/auth/Makefile.am

Packit aea12f
## Process this file with automake to produce Makefile.in
Packit aea12f
# Copyright (C) 2002-2012 Free Software Foundation, Inc.
Packit aea12f
#
Packit aea12f
# Author: Nikos Mavrogiannopoulos
Packit aea12f
#
Packit aea12f
# This file is part of GnuTLS.
Packit aea12f
#
Packit aea12f
# The GnuTLS is free software; you can redistribute it and/or
Packit aea12f
# modify it under the terms of the GNU Lesser General Public License
Packit aea12f
# as published by the Free Software Foundation; either version 3 of
Packit aea12f
# the License, or (at your option) any later version.
Packit aea12f
#
Packit aea12f
# The GnuTLS is distributed in the hope that it will be
Packit aea12f
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
Packit aea12f
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit aea12f
# Lesser General Public License for more details.
Packit aea12f
#
Packit aea12f
# You should have received a copy of the GNU Lesser General Public License
Packit aea12f
# along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit aea12f
Packit aea12f
include $(top_srcdir)/lib/common.mk
Packit aea12f
Packit aea12f
AM_CPPFLAGS = \
Packit aea12f
	-I$(srcdir)/../../gl		\
Packit aea12f
	-I$(builddir)/../../gl		\
Packit aea12f
	-I$(srcdir)/../includes		\
Packit aea12f
	-I$(builddir)/../includes	\
Packit aea12f
	-I$(builddir)/../../gl          \
Packit aea12f
	-I$(srcdir)/..
Packit aea12f
Packit aea12f
if ENABLE_MINITASN1
Packit aea12f
AM_CPPFLAGS += -I$(srcdir)/../minitasn1
Packit aea12f
endif
Packit aea12f
Packit aea12f
noinst_LTLIBRARIES = libgnutls_auth.la
Packit aea12f
Packit aea12f
libgnutls_auth_la_SOURCES = anon.c cert.c dh_common.c dhe.c \
Packit aea12f
	rsa_psk.c dhe_psk.c psk.c psk_passwd.c rsa.c srp_kx.c \
Packit aea12f
	srp_passwd.c srp_rsa.c srp_sb64.c anon.h cert.h dh_common.h \
Packit aea12f
	psk.h psk_passwd.h srp_kx.h srp_passwd.h anon_ecdh.c \
Packit Service 991b93
	ecdhe.c ecdhe.h rsa_common.h vko_gost.c