added install target
diff --git a/Makefile b/Makefile
index 4f99d50..802fa0b 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,9 @@
VERSION = $(shell rpm -q --specfile $(SPECFILE) --qf '%{VERSION}\n' | head -n 1)
RELEASE = $(shell rpm -q --specfile $(SPECFILE) --qf '%{RELEASE}\n' | head -n 1)
+UPLOAD_SLICE=princeton_planetstack
+UPLOAD_HOST=node36.princeton.vicci.org
+
PWD = $(shell pwd)
dist rpm: $(NAME)-$(VERSION)-$(RELEASE).rpm
@@ -32,5 +35,11 @@
rm -f $(NAME)-$(VERSION).tar.gz $(NAME)-$(VERSION)-$(RELEASE).src.rpm $(NAME)-$(VERSION)-$(RELEASE).noarch.rpm
rm -rf build
+install: $(NAME)-$(VERSION)-$(RELEASE).rpm
+ scp $(NAME)-$(VERSION)-$(RELEASE).x86_64.rpm $(UPLOAD_SLICE)@$(UPLOAD_HOST):/root/
+ ssh $(UPLOAD_SLICE)@$(UPLOAD_HOST) yum -y install gcc graphviz-devel graphviz-python postgresql postgresql-server python-pip python-psycopg2 libxslt-devel python-httplib2 GeoIP
+ ssh $(UPLOAD_SLICE)@$(UPLOAD_HOST) rpm --install --upgrade --replacepkgs /root/$(NAME)-$(VERSION)-$(RELEASE).x86_64.rpm
+ scp /opt/planetstack/hpc_wizard/bigquery_credentials.dat /opt/planetstack/hpc_wizard/client_secrets.json $(UPLOAD_SLICE)@$(UPLOAD_HOST):/opt/planetstack/hpc_wizard/
+
.PHONY: dist