mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
53b60546e4
Running make with PYTHON=/usr/bin/python3 will build/install the bits for Python 3. Executable scripts in ipatests have symlinks Python version suffixes as per Fedora guidelines. Suffix-less names point to the Python 2 versions. Reviewed-By: Jan Cholasta <jcholast@redhat.com>
26 lines
447 B
Makefile
26 lines
447 B
Makefile
PYTHON ?= /usr/bin/python2
|
|
PYTHONLIBDIR ?= $(shell $(PYTHON) -c "from distutils.sysconfig import *; print(get_python_lib())")
|
|
|
|
all:
|
|
# Pure Python; no need to build
|
|
true
|
|
|
|
check:
|
|
|
|
.PHONY: install
|
|
install:
|
|
if [ "$(DESTDIR)" = "" ]; then \
|
|
$(PYTHON) setup.py install; \
|
|
else \
|
|
$(PYTHON) setup.py install --root $(DESTDIR); \
|
|
fi
|
|
|
|
clean:
|
|
rm -f *~ *.pyc __pycache__/
|
|
|
|
distclean: clean
|
|
rm -f setup.py
|
|
|
|
maintainer-clean: distclean
|
|
rm -rf build
|