mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-02-25 18:55:28 -06:00
11 lines
243 B
Makefile
11 lines
243 B
Makefile
PYTHONLIBDIR ?= $(shell python -c "from distutils.sysconfig import *; print get_python_lib(1)")
|
|
PACKAGEDIR ?= $(DESTDIR)/$(PYTHONLIBDIR)/ipa
|
|
|
|
all: ;
|
|
|
|
install:
|
|
-mkdir -p $(PACKAGEDIR)
|
|
install -m 644 *.py $(PACKAGEDIR)
|
|
|
|
clean:
|
|
rm -f *~ *.pyc
|