Blame Makefile-libostree.am

Packit Service 2a3f3d
# Makefile for C source code
Packit Service 2a3f3d
#
Packit Service 2a3f3d
# Copyright (C) 2011,2014 Colin Walters <walters@verbum.org>
Packit Service 2a3f3d
#
Packit Service 2a3f3d
# SPDX-License-Identifier: LGPL-2.0+
Packit Service 2a3f3d
#
Packit Service 2a3f3d
# This library is free software; you can redistribute it and/or
Packit Service 2a3f3d
# modify it under the terms of the GNU Lesser General Public
Packit Service 2a3f3d
# License as published by the Free Software Foundation; either
Packit Service 2a3f3d
# version 2 of the License, or (at your option) any later version.
Packit Service 2a3f3d
#
Packit Service 2a3f3d
# This library is distributed in the hope that it will be useful,
Packit Service 2a3f3d
# but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2a3f3d
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2a3f3d
# Lesser General Public License for more details.
Packit Service 2a3f3d
#
Packit Service 2a3f3d
# You should have received a copy of the GNU Lesser General Public
Packit Service 2a3f3d
# License along with this library; if not, write to the
Packit Service 2a3f3d
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Packit Service 2a3f3d
# Boston, MA 02111-1307, USA.
Packit Service 2a3f3d
Packit Service 2a3f3d
include Makefile-libostree-defines.am
Packit Service 2a3f3d
Packit Service 2a3f3d
Packit Service 2a3f3d
if ENABLE_RUST
Packit Service 2a3f3d
bupsplitpath = @abs_top_builddir@/target/@RUST_TARGET_SUBDIR@/libbupsplit_rs.a
Packit Service 2a3f3d
BUPSPLIT_RUST_SRCS = rust/src/bupsplit.rs
Packit Service 2a3f3d
EXTRA_DIST += $(BUPSPLIT_RUST_SRCS)
Packit Service 2a3f3d
$(bupsplitpath): Makefile $(BUPSPLIT_RUST_SRCS)
Packit Service 2a3f3d
	cd $(top_srcdir)/rust && CARGO_TARGET_DIR=@abs_top_builddir@/target cargo build --verbose $(CARGO_RELEASE_ARGS)
Packit Service 2a3f3d
else
Packit Service 2a3f3d
bupsplitpath = libbupsplit.la
Packit Service 2a3f3d
noinst_LTLIBRARIES += libbupsplit.la
Packit Service 2a3f3d
libbupsplit_la_SOURCES = src/libostree/bupsplit.h src/libostree/bupsplit.c
Packit Service 2a3f3d
endif # ENABLE_RUST
Packit Service 2a3f3d
Packit Service 2a3f3d
lib_LTLIBRARIES += libostree-1.la
Packit Service 2a3f3d
Packit Service 2a3f3d
libostreeincludedir = $(includedir)/ostree-1
Packit Service 2a3f3d
libostreeinclude_HEADERS = $(libostree_public_headers) $(libostree_public_built_headers)
Packit Service 2a3f3d
Packit Service 2a3f3d
ENUM_TYPES = $(NULL)
Packit Service 2a3f3d
ENUM_TYPES += $(srcdir)/src/libostree/ostree-fetcher.h
Packit Service 2a3f3d
Packit Service 2a3f3d
# TODO: GLIB_CHECK_VERSION > 2.5x: use --output instead of mv (see https://github.com/ostreedev/ostree/pull/1329)
Packit Service 2a3f3d
src/libostree/ostree-enumtypes.h: src/libostree/ostree-enumtypes.h.template $(ENUM_TYPES)
Packit Service 2a3f3d
	$(AM_V_GEN) $(GLIB_MKENUMS) \
Packit Service 2a3f3d
	--template $< \
Packit Service 2a3f3d
	$(ENUM_TYPES) > $@.tmp && mv $@.tmp $@
Packit Service 2a3f3d
Packit Service 2a3f3d
src/libostree/ostree-enumtypes.c: src/libostree/ostree-enumtypes.c.template src/libostree/ostree-enumtypes.h $(ENUM_TYPES)
Packit Service 2a3f3d
	$(AM_V_GEN) $(GLIB_MKENUMS) \
Packit Service 2a3f3d
	--template $< \
Packit Service 2a3f3d
	$(ENUM_TYPES) > $@.tmp && mv $@.tmp $@
Packit Service 2a3f3d
Packit Service 2a3f3d
nodist_libostree_1_la_SOURCES = \
Packit Service 2a3f3d
	src/libostree/ostree-enumtypes.h \
Packit Service 2a3f3d
	src/libostree/ostree-enumtypes.c \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
Packit Service 2a3f3d
BUILT_SOURCES += $(nodist_libostree_1_la_SOURCES)
Packit Service 2a3f3d
Packit Service 2a3f3d
CLEANFILES += $(BUILT_SOURCES)
Packit Service 2a3f3d
Packit Service 2a3f3d
libostree_1_la_SOURCES = \
Packit Service 2a3f3d
	src/libostree/ostree-async-progress.c \
Packit Service 2a3f3d
	src/libostree/ostree-cmdprivate.h \
Packit Service 2a3f3d
	src/libostree/ostree-cmdprivate.c \
Packit Service 2a3f3d
	src/libostree/ostree-core-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-core.c \
Packit Service 2a3f3d
	src/libostree/ostree-dummy-enumtypes.c \
Packit Service 2a3f3d
	src/libostree/ostree-checksum-input-stream.c \
Packit Service 2a3f3d
	src/libostree/ostree-checksum-input-stream.h \
Packit Service 2a3f3d
	src/libostree/ostree-chain-input-stream.c \
Packit Service 2a3f3d
	src/libostree/ostree-chain-input-stream.h \
Packit Service 2a3f3d
	src/libostree/ostree-lzma-common.c \
Packit Service 2a3f3d
	src/libostree/ostree-lzma-common.h \
Packit Service 2a3f3d
	src/libostree/ostree-lzma-compressor.c \
Packit Service 2a3f3d
	src/libostree/ostree-lzma-compressor.h \
Packit Service 2a3f3d
	src/libostree/ostree-lzma-decompressor.c \
Packit Service 2a3f3d
	src/libostree/ostree-lzma-decompressor.h \
Packit Service 2a3f3d
	src/libostree/ostree-rollsum.h \
Packit Service 2a3f3d
	src/libostree/ostree-rollsum.c \
Packit Service 2a3f3d
	src/libostree/ostree-varint.h \
Packit Service 2a3f3d
	src/libostree/ostree-varint.c \
Packit Service 2a3f3d
	src/libostree/ostree-linuxfsutil.h \
Packit Service 2a3f3d
	src/libostree/ostree-linuxfsutil.c \
Packit Service 2a3f3d
	src/libostree/ostree-diff.c \
Packit Service 2a3f3d
	src/libostree/ostree-mutable-tree.c \
Packit Service 2a3f3d
	src/libostree/ostree-ref.c \
Packit Service 2a3f3d
	src/libostree/ostree-remote.c \
Packit Service 2a3f3d
	src/libostree/ostree-remote-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-repo.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-checkout.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-commit.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-pull.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-pull-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-repo-pull-verify.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-libarchive.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-prune.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-refs.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-traverse.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-repo-file.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-file-enumerator.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-file-enumerator.h \
Packit Service 2a3f3d
	src/libostree/ostree-sepolicy.c \
Packit Service 2a3f3d
	src/libostree/ostree-sepolicy-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-sysroot-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-sysroot.c \
Packit Service 2a3f3d
	src/libostree/ostree-sysroot-cleanup.c \
Packit Service 2a3f3d
	src/libostree/ostree-sysroot-deploy.c \
Packit Service 2a3f3d
	src/libostree/ostree-sysroot-upgrader.c \
Packit Service 2a3f3d
	src/libostree/ostree-impl-system-generator.c \
Packit Service 2a3f3d
	src/libostree/ostree-bootconfig-parser.c \
Packit Service 2a3f3d
	src/libostree/ostree-deployment.c \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader.h \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader.c \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-grub2.h \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-grub2.c \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-zipl.h \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-zipl.c \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-syslinux.h \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-syslinux.c \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-uboot.h \
Packit Service 2a3f3d
	src/libostree/ostree-bootloader-uboot.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-static-delta-core.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-static-delta-processing.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-static-delta-compilation.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-static-delta-compilation-analysis.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-static-delta-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-autocleanups.h \
Packit Service 2a3f3d
	src/libostree/ostree-bloom.c \
Packit Service 2a3f3d
	src/libostree/ostree-bloom-private.h \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder-avahi.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder-config.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder-mount.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder-override.c \
Packit Service 2a3f3d
	src/libostree/ostree-kernel-args.h \
Packit Service 2a3f3d
	src/libostree/ostree-kernel-args.c \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
if USE_LIBARCHIVE
Packit Service 2a3f3d
libostree_1_la_SOURCES += src/libostree/ostree-libarchive-input-stream.h \
Packit Service 2a3f3d
	src/libostree/ostree-libarchive-input-stream.c \
Packit Service 2a3f3d
	src/libostree/ostree-libarchive-private.h \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
if HAVE_LIBSOUP_CLIENT_CERTS
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	src/libostree/ostree-tls-cert-interaction.c \
Packit Service 2a3f3d
	src/libostree/ostree-tls-cert-interaction.h \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
libostree_experimental_headers = \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
if !ENABLE_EXPERIMENTAL_API
Packit Service 2a3f3d
libostree_1_la_SOURCES += $(libostree_experimental_headers)
Packit Service 2a3f3d
else # if ENABLE_EXPERIMENTAL_API
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_AVAHI
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder-avahi-parser.c \
Packit Service 2a3f3d
	src/libostree/ostree-repo-finder-avahi-private.h \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif # USE_AVAHI
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_GPGME
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	src/libostree/ostree-gpg-verifier.c \
Packit Service 2a3f3d
	src/libostree/ostree-gpg-verifier.h \
Packit Service 2a3f3d
	src/libostree/ostree-gpg-verify-result.c \
Packit Service 2a3f3d
	src/libostree/ostree-gpg-verify-result-private.h \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
else
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	src/libostree/ostree-gpg-verify-result-dummy.c \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif # USE_GPGME
Packit Service 2a3f3d
Packit Service 2a3f3d
symbol_files = $(top_srcdir)/src/libostree/libostree-released.sym
Packit Service b97f6f
if BUILDOPT_IS_DEVEL_BUILD
Packit Service b97f6f
symbol_files += $(top_srcdir)/src/libostree/libostree-devel.sym
Packit Service b97f6f
endif
Packit Service 2a3f3d
# http://blog.jgc.org/2007/06/escaping-comma-and-space-in-gnu-make.html
Packit Service 2a3f3d
wl_versionscript_arg = -Wl,--version-script=
Packit Service 2a3f3d
EXTRA_DIST += \
Packit Service 2a3f3d
	$(top_srcdir)/src/libostree/libostree-devel.sym \
Packit Service 2a3f3d
	$(top_srcdir)/src/libostree/libostree-released.sym \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
Packit Service 2a3f3d
libostree_1_la_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/bsdiff -I$(srcdir)/libglnx -I$(srcdir)/src/libotutil -I$(srcdir)/src/libostree -I$(builddir)/src/libostree \
Packit Service 2a3f3d
	$(OT_INTERNAL_GIO_UNIX_CFLAGS) $(OT_INTERNAL_GPGME_CFLAGS) $(OT_DEP_LZMA_CFLAGS) $(OT_DEP_ZLIB_CFLAGS) $(OT_DEP_CRYPTO_CFLAGS) \
Packit Service 2a3f3d
	-fvisibility=hidden '-D_OSTREE_PUBLIC=__attribute__((visibility("default"))) extern'
Packit Service 2a3f3d
libostree_1_la_LDFLAGS = -version-number 1:0:0 -Bsymbolic-functions $(addprefix $(wl_versionscript_arg),$(symbol_files))
Packit Service 2a3f3d
libostree_1_la_LIBADD = libotutil.la libglnx.la libbsdiff.la $(OT_INTERNAL_GIO_UNIX_LIBS) $(OT_INTERNAL_GPGME_LIBS) \
Packit Service 2a3f3d
                        $(OT_DEP_LZMA_LIBS) $(OT_DEP_ZLIB_LIBS) $(OT_DEP_CRYPTO_LIBS)
Packit Service 2a3f3d
# Some change between rust-1.21.0-1.fc27 and rust-1.22.1-1.fc27.x86_64
Packit Service 2a3f3d
if ENABLE_RUST
Packit Service 2a3f3d
libostree_1_la_LIBADD += -ldl
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(bupsplitpath)
Packit Service 2a3f3d
EXTRA_libostree_1_la_DEPENDENCIES = $(symbol_files)
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_LIBARCHIVE
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_DEP_LIBARCHIVE_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_DEP_LIBARCHIVE_LIBS)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_AVAHI
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_DEP_AVAHI_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_DEP_AVAHI_LIBS)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if BUILDOPT_SYSTEMD
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(LIBSYSTEMD_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(LIBSYSTEMD_LIBS)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_CURL_OR_SOUP
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	src/libostree/ostree-fetcher.h \
Packit Service 2a3f3d
	src/libostree/ostree-fetcher-util.h \
Packit Service 2a3f3d
	src/libostree/ostree-fetcher-util.c \
Packit Service 2a3f3d
  src/libostree/ostree-fetcher-uri.c \
Packit Service 2a3f3d
	src/libostree/ostree-metalink.h \
Packit Service 2a3f3d
	src/libostree/ostree-metalink.c \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_CURL
Packit Service 2a3f3d
libostree_1_la_SOURCES += src/libostree/ostree-fetcher-curl.c \
Packit Service 2a3f3d
	src/libostree/ostree-soup-uri.h src/libostree/ostree-soup-uri.c \
Packit Service 2a3f3d
  src/libostree/ostree-soup-form.c \
Packit Service 2a3f3d
  $(NULL)
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_DEP_CURL_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_DEP_CURL_LIBS)
Packit Service 2a3f3d
else
Packit Service 2a3f3d
if USE_LIBSOUP
Packit Service 2a3f3d
libostree_1_la_SOURCES += src/libostree/ostree-fetcher-soup.c
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_INTERNAL_SOUP_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_INTERNAL_SOUP_LIBS)
Packit Service 2a3f3d
else
Packit Service 2a3f3d
if USE_AVAHI
Packit Service 2a3f3d
libostree_1_la_SOURCES += src/libostree/ostree-soup-uri.h \
Packit Service 2a3f3d
	src/libostree/ostree-soup-uri.c \
Packit Service 2a3f3d
	src/libostree/ostree-soup-form.c \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_LIBMOUNT
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_DEP_LIBMOUNT_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_DEP_LIBMOUNT_LIBS)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_SELINUX
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_DEP_SELINUX_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_DEP_SELINUX_LIBS)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
libostree_1_la_SOURCES += \
Packit Service 2a3f3d
	src/libostree/ostree-sign.c \
Packit Service 2a3f3d
	src/libostree/ostree-sign.h \
Packit Service 2a3f3d
	src/libostree/ostree-sign-dummy.c \
Packit Service 2a3f3d
	src/libostree/ostree-sign-dummy.h \
Packit Service 2a3f3d
	src/libostree/ostree-sign-ed25519.c \
Packit Service 2a3f3d
	src/libostree/ostree-sign-ed25519.h \
Packit Service 2a3f3d
	$(NULL)
Packit Service 2a3f3d
Packit Service 2a3f3d
if USE_LIBSODIUM
Packit Service 2a3f3d
libostree_1_la_CFLAGS += $(OT_DEP_LIBSODIUM_CFLAGS)
Packit Service 2a3f3d
libostree_1_la_LIBADD += $(OT_DEP_LIBSODIUM_LIBS)
Packit Service 2a3f3d
endif # USE_LIBSODIUM
Packit Service 2a3f3d
Packit Service 2a3f3d
# XXX: work around clang being passed -fstack-clash-protection which it doesn't understand
Packit Service 2a3f3d
# See: https://bugzilla.redhat.com/show_bug.cgi?id=1672012
Packit Service 2a3f3d
INTROSPECTION_SCANNER_ENV = CC=gcc
Packit Service 2a3f3d
Packit Service 2a3f3d
if BUILDOPT_INTROSPECTION
Packit Service 2a3f3d
OSTree-1.0.gir: libostree-1.la Makefile
Packit Service 2a3f3d
OSTree_1_0_gir_EXPORT_PACKAGES = ostree-1
Packit Service 2a3f3d
OSTree_1_0_gir_INCLUDES = Gio-2.0
Packit Service 2a3f3d
OSTree_1_0_gir_CFLAGS = $(libostree_1_la_CFLAGS)
Packit Service 2a3f3d
if ENABLE_EXPERIMENTAL_API
Packit Service 2a3f3d
# When compiling this is set via config.h, but g-ir-scanner can't use that
Packit Service 2a3f3d
OSTree_1_0_gir_CFLAGS += -DOSTREE_ENABLE_EXPERIMENTAL_API=1
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
OSTree_1_0_gir_LIBS = libostree-1.la
Packit Service 2a3f3d
OSTree_1_0_gir_SCANNERFLAGS = --warn-all --identifier-prefix=Ostree --symbol-prefix=ostree $(GI_SCANNERFLAGS)
Packit Service 2a3f3d
OSTree_1_0_gir_FILES = $(libostreeinclude_HEADERS) $(filter-out %-private.h %/ostree-soup-uri.h $(libostree_experimental_headers),$(libostree_1_la_SOURCES))
Packit Service 2a3f3d
INTROSPECTION_GIRS += OSTree-1.0.gir
Packit Service 2a3f3d
gir_DATA += OSTree-1.0.gir
Packit Service 2a3f3d
typelib_DATA += OSTree-1.0.typelib
Packit Service 2a3f3d
Packit Service 2a3f3d
CLEANFILES += $(gir_DATA) $(typelib_DATA)
Packit Service 2a3f3d
endif
Packit Service 2a3f3d
Packit Service 2a3f3d
pkgconfig_DATA += src/libostree/ostree-1.pc
Packit Service 2a3f3d
Packit Service 2a3f3d
gpgreadme_DATA = src/libostree/README-gpg
Packit Service 2a3f3d
gpgreadmedir = $(datadir)/ostree/trusted.gpg.d
Packit Service 2a3f3d
EXTRA_DIST += src/libostree/README-gpg src/libostree/bupsplit.h \
Packit Service 2a3f3d
		src/libostree/ostree-enumtypes.h.template \
Packit Service 2a3f3d
		src/libostree/ostree-enumtypes.c.template \
Packit Service 2a3f3d
		src/libostree/ostree-deployment-private.h \
Packit Service 2a3f3d
		src/libostree/ostree-repo-deprecated.h \
Packit Service 2a3f3d
		src/libostree/ostree-version.h
Packit Service 2a3f3d
Packit Service 2a3f3d
install-mkdir-remotes-d-hook:
Packit Service 2a3f3d
	mkdir -p $(DESTDIR)$(sysconfdir)/ostree/remotes.d
Packit Service 2a3f3d
INSTALL_DATA_HOOKS += install-mkdir-remotes-d-hook