summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile24
1 files changed, 0 insertions, 24 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 49e4f728..00000000
--- a/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-PYTHON=`which python`
-DESTDIR=/
-PROJECT=horizon
-
-all:
- @echo "make test - Run tests"
- @echo "make source - Create source package"
- @echo "make install - Install on local system"
- @echo "make buildrpm - Generate a rpm package"
- @echo "make clean - Get rid of scratch and byte files"
-
-source:
- $(PYTHON) setup.py sdist $(COMPILE)
-
-install:
- $(PYTHON) setup.py install --root $(DESTDIR) $(COMPILE)
-
-buildrpm:
- $(PYTHON) setup.py bdist_rpm --post-install=rpm/postinstall --pre-uninstall=rpm/preuninstall
-
-clean:
- $(PYTHON) setup.py clean
- rm -rf build/ MANIFEST
- find . -name '*.pyc' -delete