summaryrefslogtreecommitdiffstats
path: root/ipapython/Makefile
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2016-10-04 13:23:22 +0200
committerPetr Vobornik <pvoborni@redhat.com>2016-10-20 18:43:37 +0200
commit4cd83fb51cc35a2ba7773b62a7aa8d295a1e1e4a (patch)
tree12214bd0d25adfbfaa6ac83dc87cabca967d3315 /ipapython/Makefile
parent8f98fa1bd5f1da207fab6f89b75e0cdc19d00797 (diff)
downloadfreeipa-4cd83fb51cc35a2ba7773b62a7aa8d295a1e1e4a.tar.gz
freeipa-4cd83fb51cc35a2ba7773b62a7aa8d295a1e1e4a.tar.xz
freeipa-4cd83fb51cc35a2ba7773b62a7aa8d295a1e1e4a.zip
Port all setup.py to setuptools
All setup.py files are now using setuptools through a common file ipasetup.py. The file is auto-generated and contain all common settings. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Petr Spacek <pspacek@redhat.com> Reviewed-By: Jan Cholasta <jcholast@redhat.com> Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipapython/Makefile')
-rw-r--r--ipapython/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipapython/Makefile b/ipapython/Makefile
index d262439fd..7ecc5f565 100644
--- a/ipapython/Makefile
+++ b/ipapython/Makefile
@@ -20,13 +20,13 @@ install:
done
clean:
- rm -f *~ *.pyc __pycache__/
+ rm -rf *~ *.pyc __pycache__/
@for subdir in $(SUBDIRS); do \
(cd $$subdir && $(MAKE) $@) || exit 1; \
done
distclean: clean
- rm -f setup.py ipa-python.spec version.py
+ rm -f ipa-python.spec version.py
@for subdir in $(SUBDIRS); do \
(cd $$subdir && $(MAKE) $@) || exit 1; \
done