https://github.com/ging/horizon
Revision 60b376882d53d29355a73a875a1762f7cb4c3d57 authored by Doug Fish on 24 September 2014, 19:00:47 UTC, committed by Doug Fish on 24 September 2014, 20:54:56 UTC
Fix concatenation and pluralization issues for Volume,
Volume Type, Volume Snapshot, Extra Spec and QoS Specs
related actions.

Change-Id: I9ec9caeb0103663f34fc24a5bddd6276ff8b37e7
partial-bug: 1307476
1 parent 11a5973
Raw File
Tip revision: 60b376882d53d29355a73a875a1762f7cb4c3d57 authored by Doug Fish on 24 September 2014, 19:00:47 UTC
Fix concatenation in Volume related actions
Tip revision: 60b3768
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