mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-25 01:34:34 +03:00
081da0033a
I ran into Jeremy Katz today, and he gave me permission to relicense the small bits of switch-root.c to LGPLv2+. This combined with permission from Peter Jones allows OSTree to become fully LGPLv2+. Not a big deal, it's just a lot clearer to only have one license, and it makes it easier to turn application code into library code.
173 lines
6.0 KiB
Makefile
173 lines
6.0 KiB
Makefile
# Copyright (C) 2011 Colin Walters <walters@verbum.org>
|
|
#
|
|
# 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, write to the
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
|
|
AM_CPPFLAGS = -DDATADIR='"$(datadir)"' -DLIBEXECDIR='"$(libexecdir)"' \
|
|
-DOSTREE_FEATURES='"$(OSTREE_FEATURES)"' \
|
|
-DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_34 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_34 \
|
|
-DSOUP_VERSION_MIN_REQUIRED=SOUP_VERSION_2_40 -DSOUP_VERSION_MAX_ALLOWED=SOUP_VERSION_40
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc --disable-maintainer-mode
|
|
|
|
# Subdirectories
|
|
SUBDIRS =
|
|
|
|
if BUILD_EMBEDDED_DEPENDENCIES
|
|
SUBDIRS += embedded-dependencies
|
|
endif
|
|
|
|
SUBDIRS += .
|
|
|
|
if ENABLE_GTK_DOC
|
|
SUBDIRS += doc
|
|
endif
|
|
|
|
# Common variables
|
|
NULL =
|
|
INSTALL_DATA_HOOKS =
|
|
BUILT_SOURCES =
|
|
MANPAGES =
|
|
CLEANFILES =
|
|
EXTRA_DIST =
|
|
bin_PROGRAMS =
|
|
sbin_PROGRAMS =
|
|
bin_SCRIPTS =
|
|
lib_LTLIBRARIES =
|
|
libexec_PROGRAMS =
|
|
noinst_LTLIBRARIES =
|
|
noinst_PROGRAMS =
|
|
privlibdir = $(pkglibdir)
|
|
privlib_LTLIBRARIES =
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA =
|
|
INTROSPECTION_GIRS =
|
|
girdir = $(datadir)/gir-1.0
|
|
gir_DATA =
|
|
typelibdir = $(libdir)/girepository-1.0
|
|
typelib_DATA =
|
|
|
|
EXTRA_DIST += autogen.sh COPYING README.md
|
|
|
|
if BUILD_EMBEDDED_DEPENDENCIES
|
|
OT_INTERNAL_GIO_UNIX_CFLAGS = \
|
|
-I$(top_builddir)/embedded-dependencies/EMBEDDEPS/include/glib-2.0 \
|
|
-I$(top_builddir)/embedded-dependencies/EMBEDDEPS/include/gio-unix-2.0 \
|
|
-I$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/glib-2.0/include \
|
|
$(NULL)
|
|
OT_INTERNAL_GIO_UNIX_LIBS = \
|
|
$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/libglib-2.0.so \
|
|
$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/libgthread-2.0.so \
|
|
$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/libgmodule-2.0.so \
|
|
$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/libgobject-2.0.so \
|
|
$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/libgio-2.0.so \
|
|
$(NULL)
|
|
OT_INTERNAL_SOUP_CFLAGS = \
|
|
$(OT_INTERNAL_GIO_UNIX_CFLAGS) \
|
|
-I$(top_builddir)/embedded-dependencies/EMBEDDEPS/include/libsoup-2.4 \
|
|
$(NULL)
|
|
OT_INTERNAL_SOUP_LIBS = \
|
|
$(OT_INTERNAL_GIO_UNIX_LIBS) \
|
|
$(top_builddir)/embedded-dependencies/EMBEDDEPS/lib/libsoup-2.4.so \
|
|
$(NULL)
|
|
else
|
|
OT_INTERNAL_GIO_UNIX_CFLAGS = $(OT_DEP_GIO_UNIX_CFLAGS)
|
|
OT_INTERNAL_GIO_UNIX_LIBS = $(OT_DEP_GIO_UNIX_LIBS)
|
|
OT_INTERNAL_SOUP_CFLAGS = $(OT_DEP_SOUP_CFLAGS)
|
|
OT_INTERNAL_SOUP_LIBS = $(OT_DEP_SOUP_LIBS)
|
|
endif
|
|
|
|
libgsystem_srcpath := src/libgsystem
|
|
libgsystem_cflags = $(OT_INTERNAL_GIO_UNIX_CFLAGS) -I$(srcdir)/src/libgsystem
|
|
libgsystem_libs = $(OT_INTERNAL_GIO_UNIX_LIBS)
|
|
include src/libgsystem/Makefile-libgsystem.am
|
|
noinst_LTLIBRARIES += libgsystem.la
|
|
|
|
|
|
if BUILDOPT_INTROSPECTION
|
|
include $(INTROSPECTION_MAKEFILE)
|
|
GIRS =
|
|
TYPELIBS = $(GIRS:.gir=.typelib)
|
|
endif
|
|
|
|
include Makefile-otutil.am
|
|
include Makefile-libostree.am
|
|
include Makefile-ostree.am
|
|
include Makefile-switchroot.am
|
|
include Makefile-tests.am
|
|
include Makefile-dracut.am
|
|
|
|
install-data-hook: $(INSTALL_DATA_HOOKS)
|
|
|
|
|
|
release-tag:
|
|
git tag -m "Release $(VERSION)" v$(VERSION)
|
|
|
|
embed_dependency=tar -C $(srcdir) --append --exclude='.git/*' --transform="s,^embedded-dependencies/,ostree-embeddeps-$${GITVERSION}/embedded-dependencies/," --file=$${TARFILE_TMP}
|
|
|
|
git_version_rpm = $$(git describe | sed -e 's,-,\.,g' -e 's,^v,,')
|
|
|
|
release-tarball-embedded:
|
|
set -x; \
|
|
GITVERSION=$(git_version_rpm); export GITVERSION; \
|
|
TARFILE_TMP=ostree-embeddeps-$${GITVERSION}.tar.tmp; \
|
|
REV=$$(git rev-parse HEAD); \
|
|
echo "Archiving ostree at $${REV}"; \
|
|
(cd $(srcdir); git archive --format=tar --prefix=ostree-embeddeps-$${GITVERSION}/ $${REV}) > $${TARFILE_TMP}; \
|
|
(cd $$(git rev-parse --show-toplevel); git submodule status) | while read line; do \
|
|
rev=$$(echo $$line | cut -f 1 -d ' '); path=$$(echo $$line | cut -f 2 -d ' '); \
|
|
echo "Archiving $${path} at $${rev}"; \
|
|
(cd $(srcdir)/$$path; git archive --format=tar --prefix=ostree-embeddeps-$${GITVERSION}/$$path/ $${rev}) > submodule.tar; \
|
|
tar -A -f $${TARFILE_TMP} submodule.tar; \
|
|
rm submodule.tar; \
|
|
done; \
|
|
echo "Archiving glib"; \
|
|
$(embed_dependency) embedded-dependencies/glib; \
|
|
echo "Archiving libsoup"; \
|
|
$(embed_dependency) embedded-dependencies/libsoup; \
|
|
mv ostree-embeddeps-$${GITVERSION}.tar{.tmp,}; \
|
|
gzip -f ostree-embeddeps-$${GITVERSION}.tar
|
|
|
|
srpm:
|
|
GITVERSION=$(git_version_rpm); export GITVERSION; \
|
|
$(srcdir)/packages/substitute-gitversion.sh $(srcdir)/packages/ostree.spec.in > ostree.spec
|
|
$(srcdir)/packages/rpmbuild-cwd -bs ostree.spec
|
|
|
|
dist-snapshot:
|
|
set -x; \
|
|
GITVERSION=$(git_version_rpm); export GITVERSION; \
|
|
TARFILE_TMP=ostree-$${GITVERSION}.tar.tmp; \
|
|
REV=$$(git rev-parse HEAD); \
|
|
echo "Archiving ostree at $${REV}"; \
|
|
(cd $(srcdir); git archive --format=tar --prefix=ostree-$${GITVERSION}/ $${REV}) > $${TARFILE_TMP}; \
|
|
(cd $$(git rev-parse --show-toplevel); git submodule status) | while read line; do \
|
|
rev=$$(echo $$line | cut -f 1 -d ' '); path=$$(echo $$line | cut -f 2 -d ' '); \
|
|
echo "Archiving $${path} at $${rev}"; \
|
|
(cd $(srcdir)/$$path; git archive --format=tar --prefix=ostree-$${GITVERSION}/$$path/ $${rev}) > submodule.tar; \
|
|
tar -A -f $${TARFILE_TMP} submodule.tar; \
|
|
rm submodule.tar; \
|
|
done; \
|
|
mv ostree-$${GITVERSION}.tar{.tmp,}; \
|
|
gzip -f ostree-$${GITVERSION}.tar
|
|
|
|
check-local:
|
|
@echo " *** NOTE ***"
|
|
@echo " *** NOTE ***"
|
|
@echo " ostree only supports https://live.gnome.org/GnomeGoals/InstalledTests"
|
|
@echo " To run them, ostree must be configured with --enable-installed-tests and installed"
|
|
@echo " *** NOTE ***"
|
|
@echo " *** NOTE ***"
|