2013-12-22 04:41:30 +04:00
# Copyright (C) 2013 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.
2014-06-06 22:51:18 +04:00
privlib_SCRIPTS = src/rpmqa-sorted-and-clean
2013-12-22 04:41:30 +04:00
2014-01-29 23:37:44 +04:00
bin_PROGRAMS += rpm-ostree
2013-12-22 04:41:30 +04:00
2014-03-28 03:57:10 +04:00
noinst_LTLIBRARIES += librpmostree.la
librpmostree_la_SOURCES = \
2014-01-29 23:37:44 +04:00
src/rpmostree-postprocess.c \
2014-03-28 03:57:10 +04:00
src/rpmostree-postprocess.h \
2014-05-30 02:00:11 +04:00
src/rpmostree-pull-progress.c \
src/rpmostree-pull-progress.h \
2014-05-16 01:46:51 +04:00
src/rpmostree-util.c \
src/rpmostree-util.h \
2014-03-28 03:57:10 +04:00
src/hif-utils.c \
src/hif-utils.h \
2014-08-05 16:21:54 +04:00
src/rpmostree-treepkgdiff.c \
src/rpmostree-treepkgdiff.h \
src/rpmostree-builtin-rpm.h \
2014-03-28 03:57:10 +04:00
$(NULL)
2014-03-29 06:04:52 +04:00
if BUILDOPT_PATCHED_HAWKEY_AND_LIBSOLV
librpmostree_la_SOURCES += \
src/rpmostree-treepkgdiff.c \
src/rpmostree-treepkgdiff.h \
$(NULL)
endif
2014-03-28 03:57:10 +04:00
librpmostree_la_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/src -DPKGLIBDIR=\"$(pkglibdir)\" $(PKGDEP_RPMOSTREE_CFLAGS)
librpmostree_la_LIBADD = $(AM_LDFLAGS) $(PKGDEP_RPMOSTREE_LIBS)
rpm_ostree_SOURCES = src/main.c \
2014-03-22 23:05:41 +04:00
src/rpmostree-builtins.h \
2014-05-26 23:05:08 +04:00
src/rpmostree-builtin-compose.c \
2014-03-25 02:11:21 +04:00
src/rpmostree-builtin-upgrade.c \
2014-03-29 03:48:06 +04:00
src/rpmostree-builtin-rollback.c \
2014-05-30 02:00:11 +04:00
src/rpmostree-builtin-rebase.c \
2014-06-11 21:47:10 +04:00
src/rpmostree-builtin-status.c \
2014-07-03 11:32:21 +04:00
src/rpmostree-builtin-rpm.c \
2014-05-26 23:05:08 +04:00
src/rpmostree-compose-builtin-tree.c \
src/rpmostree-compose-builtin-sign.c \
2014-01-29 23:37:44 +04:00
$(NULL)
2014-02-08 02:29:40 +04:00
rpm_ostree_CFLAGS = $(AM_CFLAGS) -I$(srcdir)/src -DPKGLIBDIR=\"$(pkglibdir)\" $(PKGDEP_RPMOSTREE_CFLAGS)
2014-03-28 03:57:10 +04:00
rpm_ostree_LDADD = $(AM_LDFLAGS) $(PKGDEP_RPMOSTREE_LIBS) librpmostree.la
2014-01-16 16:26:54 +04:00
2013-12-22 04:41:30 +04:00
privdatadir=$(pkglibdir)
privdata_DATA = src/tmpfiles-ostree-integration.conf
2014-05-21 16:21:20 +04:00
if BUILDOPT_USRBINATOMIC
INSTALL_DATA_HOOKS += install-usrbinatomic-hook
install-usrbinatomic-hook:
2014-05-26 23:41:58 +04:00
ln -sf rpm-ostree $(DESTDIR)$(bindir)/atomic
ln -sf rpm-ostree.1.gz $(DESTDIR)$(mandir)/man1/atomic.1.gz
2014-05-21 16:21:20 +04:00
endif