summaryrefslogtreecommitdiffstats
path: root/ipapython/py_default_encoding/Makefile
blob: 88f17f70588e1fa20ed98409e37f7dc2e72b6f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
PYTHONLIBDIR ?= $(shell  python2 -c "from distutils.sysconfig import *; print get_python_lib()")
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
CONFIGDIR ?= $(DESTDIR)/etc/ipa

all:
	python2 setup.py build

install:
	if [ "$(DESTDIR)" = "" ]; then \
		python2 setup.py install; \
	else \
		python2 setup.py install --root $(DESTDIR); \
	fi

clean:
	rm -rf build

distclean: clean

maintainer-clean: distclean