X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=src%2Fpython-lttngust%2FMakefile.am;h=30db9fbc0f3fed90ad8c489771a0192a344d2b06;hb=e03d7c66c57bf268b87296566a5160039f35ccfb;hp=d53e21da6f9957cb5deece0d2034ac32218fd075;hpb=62ac73652e744e80132b30994267c66ebc4a9ccc;p=lttng-ust.git diff --git a/src/python-lttngust/Makefile.am b/src/python-lttngust/Makefile.am index d53e21da..30db9fbc 100644 --- a/src/python-lttngust/Makefile.am +++ b/src/python-lttngust/Makefile.am @@ -1,3 +1,5 @@ +# SPDX-FileCopyrightText: 2023 EfficiOS, Inc +# # SPDX-License-Identifier: LGPL-2.1-only INSTALLED_FILES=$(builddir)/installed_files.txt @@ -26,7 +28,7 @@ endif all-local: build-python-bindings.stamp copy-static-deps.stamp: $(addprefix $(srcdir)/, $(STATIC_BINDINGS_DEPS)) - @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + $(AM_V_at)if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for file in $(STATIC_BINDINGS_DEPS); do \ cp -f $(srcdir)/$$file $(builddir)/$$file; \ done; \ @@ -37,11 +39,11 @@ copy-static-deps.stamp: $(addprefix $(srcdir)/, $(STATIC_BINDINGS_DEPS)) # This ease the installation process and assure a *pythonic* # installation. build-python-bindings.stamp: copy-static-deps.stamp $(GENERATED_BINDINGS_DEPS) - $(PYTHON) $(builddir)/setup.py build --force + $(AM_V_at)$(PYTHON) $(builddir)/setup.py build --force touch $@ install-exec-local: build-python-bindings.stamp - @opts="--prefix=$(prefix) --record $(INSTALLED_FILES) --verbose --no-compile $(DISTSETUPOPTS)"; \ + $(AM_V_at)opts="--prefix=$(prefix) --record $(INSTALLED_FILES) --verbose --no-compile $(DISTSETUPOPTS)"; \ if [ "$(DESTDIR)" != "" ]; then \ opts="$$opts --root=$(DESTDIR)"; \ fi; \ @@ -49,7 +51,7 @@ install-exec-local: build-python-bindings.stamp clean-local: rm -rf $(builddir)/build - @if [ x"$(srcdir)" != x"$(builddir)" ]; then \ + $(AM_V_at)if [ x"$(srcdir)" != x"$(builddir)" ]; then \ for file in $(STATIC_BINDINGS_DEPS); do \ rm -f $(builddir)/$$file; \ done; \