/
githubmirror
/
gnutls
Обзор
Документация
Войти
/
githubmirror
/
gnutls
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/hpke/Makefile.am
51 строка
1 KB
Daiki Ueno
hpke: include internal header files in distribution
29 июл 2026, 10:43
29 июл 2026, 10:43
050c2b4
Код
Авторство
О чём код?
## Process this file with automake to produce Makefile.in # Copyright © 2026 David Dudas # # Author: David Dudas <david.dudas03@e-uvt.ro> # # This file is part of GnuTLS. # # The GnuTLS is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public License # as published by the Free Software Foundation; either version 2.1 of # the License, or (at your option) any later version. # # This library 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 # Lesser General Public License for more details. # # # You should have received a copy of the GNU Lesser General Public License # along with this program. If not, see <https://www.gnu.org/licenses/> include $(top_srcdir)/lib/common.mk AM_CPPFLAGS += \ -I$(srcdir)/../../gl \ -I$(builddir)/../../gl \ -I$(srcdir)/../includes \ -I$(builddir)/../includes \ -I$(builddir)/../../gl \ -I$(srcdir)/.. if ENABLE_MINITASN1 AM_CPPFLAGS += -I$(srcdir)/../minitasn1 endif noinst_LTLIBRARIES = libgnutls_hpke.la libgnutls_hpke_la_SOURCES = hpke-api.c if ENABLE_HPKE libgnutls_hpke_la_SOURCES += \ hpke.c \ hpke-builders.c \ hpke-builders.h \ hpke-hkdf.c \ hpke-hkdf.h \ hpke-key-management.c \ hpke-key-management.h \ hpke-params.c \ hpke-params.h endif