1 # SPDX-License-Identifier: LGPL-2.1-only
3 INSTALLED_FILES=$(builddir)/installed_files.txt
5 STATIC_BINDINGS_DEPS = \
11 lttngust/loghandler.py
13 all-local: build-python-bindings.stamp
15 copy-static-deps.stamp: $(addprefix $(srcdir)/, $(STATIC_BINDINGS_DEPS))
16 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
17 for file in $(STATIC_BINDINGS_DEPS); do \
18 cp -f $(srcdir)/$$file $(builddir)/$$file; \
23 # Use setup.py for the installation instead of Autoconf.
24 # This ease the installation process and assure a *pythonic*
26 build-python-bindings.stamp: copy-static-deps.stamp
27 $(PYTHON) $(builddir)/setup.py build --force
30 install-exec-local: build-python-bindings.stamp
31 @opts="--prefix=$(prefix) --record $(INSTALLED_FILES) --verbose --no-compile $(DISTSETUPOPTS)"; \
32 if [ "$(DESTDIR)" != "" ]; then \
33 opts="$$opts --root=$(DESTDIR)"; \
35 $(PYTHON) $(builddir)/setup.py install $$opts;
38 rm -rf $(builddir)/build
39 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
40 for file in $(STATIC_BINDINGS_DEPS); do \
41 rm -f $(builddir)/$$file; \
45 # Distutils' setup.py does not include an uninstall target, we thus need to do
46 # it manually. We save the path of the files that were installed during the install target
47 # and delete them during the uninstallation.
49 if [ "$(DESTDIR)" != "" ]; then \
50 $(SED) -i "s|^|$(DESTDIR)/|g" $(INSTALLED_FILES); \
52 cat $(INSTALLED_FILES) | xargs rm -rf || true
53 $(GREP) "__init__.py" $(INSTALLED_FILES) | xargs dirname | xargs rm -rf || true
54 rm -f $(INSTALLED_FILES)
56 EXTRA_DIST = $(STATIC_BINDINGS_DEPS)
59 build-python-bindings.stamp \
60 copy-static-deps.stamp