horizon/Makefile
Miles Gould ac1ab3b4c2 Remove non-existent "test" target from Make help
mgould@bashful:~/src/horizon 15:58  master
0 $ make test
make: *** No rule to make target 'test'.  Stop.

Change-Id: Ie658a1e096f34072ddc506a5b6e00e061a1a30bd
2017-03-13 14:35:31 +00:00

24 lines
557 B
Makefile

PYTHON=`which python`
DESTDIR=/
PROJECT=horizon
all:
@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