mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-22 17:35:55 +03:00
20b8cb174c
Add long overdue unit testing coverage for this, which at least slightly closes out the android boot CI gap. Actually, this *copies* the karg parsing code into otcore because it now uses glib, which we're not yet using in the static prepare-root. It's pretty tempting to drop support for the static prepare root entirely. But for now we'll live with some code duplication.
26 lines
1.2 KiB
Plaintext
26 lines
1.2 KiB
Plaintext
# SPDX-License-Identifier: LGPL-2.0+
|
|
#
|
|
# This library 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 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 library. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
noinst_LTLIBRARIES += libotcore.la
|
|
|
|
libotcore_la_SOURCES = \
|
|
src/libotcore/otcore.h \
|
|
src/libotcore/otcore-ed25519-verify.c \
|
|
src/libotcore/otcore-prepare-root.c \
|
|
$(NULL)
|
|
|
|
libotcore_la_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/libglnx -I$(srcdir)/src/libotutil -DLOCALEDIR=\"$(datadir)/locale\" $(OT_INTERNAL_GIO_UNIX_CFLAGS) $(OT_INTERNAL_GPGME_CFLAGS) $(OT_DEP_CRYPTO_LIBS) $(LIBSYSTEMD_CFLAGS)
|
|
libotcore_la_LIBADD = $(OT_INTERNAL_GIO_UNIX_LIBS) $(OT_INTERNAL_GPGME_LIBS) $(LIBSYSTEMD_LIBS) $(OT_DEP_CRYPTO_LIBS)
|