25 lines
588 B
Makefile
Raw Normal View History

2011-06-20 21:11:02 +00:00
PYTHON=`which python`
DESTDIR=/
PROJECT=horizon
2011-06-20 21:11:02 +00:00
all:
2011-06-22 09:47:45 -07:00
@echo "make test - Run tests"
2011-06-20 21:11:02 +00:00
@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