mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-30 10:47:08 -06:00
0ef9d88104
Also clean up some duplicate files in the rpm for the UI.
21 lines
403 B
Makefile
21 lines
403 B
Makefile
PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib()")
|
|
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
|
|
CONFIGDIR ?= $(DESTDIR)/etc/ipa
|
|
|
|
all:
|
|
python setup.py build
|
|
|
|
install:
|
|
if [ "$(DESTDIR)" = "" ]; then \
|
|
python setup.py install; \
|
|
else \
|
|
python setup.py install --root $(DESTDIR); \
|
|
fi
|
|
|
|
clean:
|
|
rm -rf build
|
|
|
|
distclean: clean
|
|
|
|
maintainer-clean: distclean
|