mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 16:10:02 -06:00
9648da8f5f
Fix make maintainer-clean Also make RPM naming consistent by using a temp RELEASE file. This one helps when testing builds using rpms. Just 'echo X > RELEASE' to build a new rpms (X, X+1, X+2 ...) Version 1.1.0 was released some times ago, bump up to 1.1.1
29 lines
542 B
Makefile
29 lines
542 B
Makefile
PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib()")
|
|
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
|
|
CONFIGDIR ?= $(DESTDIR)/etc/ipa
|
|
TESTS = $(wildcard test/*.py)
|
|
|
|
all: ;
|
|
|
|
install:
|
|
if [ "$(DESTDIR)" = "" ]; then \
|
|
python setup.py install; \
|
|
else \
|
|
python setup.py install --root $(DESTDIR); \
|
|
fi
|
|
|
|
clean:
|
|
rm -f *~ *.pyc
|
|
|
|
distclean: clean
|
|
rm -f setup.py ipa-python.spec version.py
|
|
|
|
maintainer-clean: distclean
|
|
rm -rf build
|
|
|
|
.PHONY: test
|
|
test: $(subst .py,.tst,$(TESTS))
|
|
|
|
%.tst: %.py
|
|
python $<
|