Blame lib/accelerated/aarch64/Makefile.am

Packit Service 4684c1
## Process this file with automake to produce Makefile.in
Packit Service 4684c1
# Copyright (C) 2011-2012 Free Software Foundation, Inc.
Packit Service 4684c1
#
Packit Service 4684c1
# Author: Nikos Mavrogiannopoulos
Packit Service 4684c1
#
Packit Service 4684c1
# This file is part of GNUTLS.
Packit Service 4684c1
#
Packit Service 4684c1
# The GNUTLS library is free software; you can redistribute it and/or
Packit Service 4684c1
# modify it under the terms of the GNU Lesser General Public License
Packit Service 4684c1
# as published by the Free Software Foundation; either version 3 of
Packit Service 4684c1
# the License, or (at your option) any later version.
Packit Service 4684c1
#
Packit Service 4684c1
# The GNUTLS library is distributed in the hope that it will be
Packit Service 4684c1
# useful, but WITHOUT ANY WARRANTY; without even the implied warranty
Packit Service 4684c1
# of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 4684c1
# Lesser General Public License for more details.
Packit Service 4684c1
#
Packit Service 4684c1
# You should have received a copy of the GNU Lesser General Public License
Packit Service 4684c1
# along with this program.  If not, see <https://www.gnu.org/licenses/>
Packit Service 4684c1
Packit Service 4684c1
AM_LIBTOOLFLAGS=--tag=CC
Packit Service 4684c1
Packit Service 4684c1
include $(top_srcdir)/lib/common.mk
Packit Service 4684c1
Packit Service 4684c1
AM_CPPFLAGS = -I$(srcdir)/../../../gl		\
Packit Service 4684c1
	-I$(builddir)/../../../gl		\
Packit Service 4684c1
	-I$(srcdir)/../../includes	\
Packit Service 4684c1
	-I$(builddir)/../../includes	\
Packit Service 4684c1
	-I$(srcdir)/../../ \
Packit Service 4684c1
	-I$(srcdir)/../
Packit Service 4684c1
Packit Service 4684c1
if ENABLE_MINITASN1
Packit Service 4684c1
AM_CPPFLAGS += -I$(srcdir)/../../minitasn1
Packit Service 4684c1
endif
Packit Service 4684c1
Packit Service 4684c1
#ensure that we have all aarch64 instruction sets enabled for the assembler
Packit Service 4684c1
AM_CCASFLAGS = -Wa,-march=all
Packit Service 4684c1
Packit Service 4684c1
EXTRA_DIST = README
Packit Service 4684c1
Packit Service 4684c1
noinst_LTLIBRARIES = libaarch64.la
Packit Service 4684c1
Packit Service 4684c1
libaarch64_la_SOURCES = aarch64-common.c aarch64-common.h sha-aarch64.h sha-aarch64.c \
Packit Service 4684c1
	hmac-sha-aarch64.c aes-cbc-aarch64.c aes-gcm-aarch64.c aes-aarch64.h aes-ccm-aarch64.c
Packit Service 4684c1
Packit Service 4684c1
if MACOSX
Packit Service 4684c1
libaarch64_la_SOURCES += macosx/sha1-armv8.s macosx/sha512-armv8.s macosx/sha256-armv8.s \
Packit Service 4684c1
	macosx/aes-aarch64.s macosx/ghash-aarch64.s
Packit Service 4684c1
else
Packit Service 4684c1
libaarch64_la_SOURCES += elf/sha1-armv8.s elf/sha512-armv8.s elf/sha256-armv8.s \
Packit Service 4684c1
	elf/aes-aarch64.s elf/ghash-aarch64.s
Packit Service 4684c1
endif