#!/usr/bin/make -f

#build:
#	rm -rvf $CURDIR/devops
#	git clone --branch=2.3.1 git://github.com/stackforge/fuel-devops.git $CURDIR/devops
#	rm -rvf $CURDIR/devops/.git $CURDIR/devops/.gitignore $CURDIR/devops/.gitreview

install:
	install -d										$(DESTDIR)/usr/bin
	install -d										$(DESTDIR)/usr/share/pyshared
	install -d										$(DESTDIR)/usr/lib/python2.6/dist-packages
	install -d										$(DESTDIR)/usr/lib/python2.7/dist-packages
	install -m755	$(CURDIR)/devops/bin/dos.py		$(DESTDIR)/usr/bin/
	cp -r 			$(CURDIR)/devops/devops			$(DESTDIR)/usr/share/pyshared/
	cp -r           $(CURDIR)/devops/devops         $(DESTDIR)/usr/lib/python2.6/dist-packages/
	cp -r           $(CURDIR)/devops/devops         $(DESTDIR)/usr/lib/python2.7/dist-packages/

