2016-06-29 04:33:02 +03:00
# Makefile for C source code
#
# Copyright (C) 2016 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.
2017-04-13 04:18:54 +03:00
# Recurse into libdnf
ALL_LOCAL_HOOKS += libdnf-local
libdnf-local:
2018-08-27 20:15:50 +03:00
cd libdnf-build && $(MAKE) $(if $(subst 0,,$(V)),VERBOSE=1,)
2016-08-03 21:30:17 +03:00
ln -sf libdnf-build/libdnf/libdnf.so.1 .
2017-04-13 04:18:54 +03:00
libdnf.so.1: libdnf-local
2016-08-03 21:30:17 +03:00
CLEANFILES += libdnf.so.1
GITIGNOREFILES += libdnf-build/
2016-06-29 04:33:02 +03:00
2016-08-03 21:30:17 +03:00
install-libdnf-hook:
2016-06-29 04:33:02 +03:00
install -d -m 0755 $(DESTDIR)$(libdir)/rpm-ostree
2016-08-03 21:30:17 +03:00
install -m 0755 $$(readlink libdnf.so.1) $(DESTDIR)$(libdir)/rpm-ostree
INSTALL_DATA_HOOKS += install-libdnf-hook
2016-07-06 16:08:35 +03:00
2016-08-03 21:30:17 +03:00
clean-local: clean-local-dnf
.PHONY: clean-local-dnf
clean-local-dnf:
cd libdnf-build && $(MAKE) clean