Added instructions to first fetch submodules before installing.
diff --git a/Makefile b/Makefile
index 1da3fa1..8b13f2d 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@
 	@echo "       make uninstall"
 
 install:
+	@test -f gitflow-shFlags || (echo "Run 'git submodule init && git submodule update' first." ; exit 1 )
 	install -d -m 0755 $(GIT_EXEC_PATH)
 	install -m 0755 $(EXEC_FILES) $(GIT_EXEC_PATH)
 	install -m 0644 $(SCRIPT_FILES) $(GIT_EXEC_PATH)