https://github.com/ging/horizon
Raw File
Tip revision: e7d7643e3ba83a1c43c689406c5eab77539c67a5 authored by jakedahn on 15 December 2011, 00:27:36 UTC
Fixing floating ip allocation.
Tip revision: e7d7643
Makefile
PYTHON=`which python`
DESTDIR=/
PROJECT=horizon

all:
	@echo "make buildout - Run through buildout"
	@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"

buildout: ./bin/buildout
	./bin/buildout

./bin/buildout:
	$(PYTHON) bootstrap.py

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