https://github.com/ging/horizon
Revision b61ee0865300f85563c0c708d9c56923e0429049 authored by Gabriel Hurley on 15 March 2012, 00:59:00 UTC, committed by Gabriel Hurley on 15 March 2012, 01:01:51 UTC
  * Fixes bug 955630 by removing the launch instance action.
  * Allows admins to delete any image.

Change-Id: Ie9bd1c93349c19ac07b6d576115420da55148042
1 parent 42c4715
Raw File
Tip revision: b61ee0865300f85563c0c708d9c56923e0429049 authored by Gabriel Hurley on 15 March 2012, 00:59:00 UTC
Corrects available actions for syspanel images table.
Tip revision: b61ee08
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