https://github.com/ging/horizon
Revision 0f26d2e4bc6fdc1c207571827e05e4af918cb927 authored by Jenkins on 09 March 2012, 22:52:18 UTC, committed by Gerrit Code Review on 09 March 2012, 22:52:18 UTC
2 parent s 80b5d64 + 839cdbe
Raw File
Tip revision: 0f26d2e4bc6fdc1c207571827e05e4af918cb927 authored by Jenkins on 09 March 2012, 22:52:18 UTC
Merge "Show quotas in Allocate IP form and block if quota limit reached"
Tip revision: 0f26d2e
Makefile
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
back to top