summaryrefslogtreecommitdiffstats
path: root/ipa-python/Makefile
blob: 4b20d4bb7eb04271fa769ec7df7ae56347d87859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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:
	-mkdir -p $(PACKAGEDIR)
	install -m 644 *.py $(PACKAGEDIR)
	-mkdir -p $(CONFIGDIR)
	if ! [ -e $(CONFIGDIR)/ipa.conf ]; then \
		install -m 644 ipa.conf $(CONFIGDIR); \
	fi

clean:
	rm -f *~ *.pyc

.PHONY: test
test: $(subst .py,.tst,$(TESTS))

%.tst: %.py
	python $<