From 33c093678f9dc9e997385770b1877c871947e9d1 Mon Sep 17 00:00:00 2001
From: Jaromil <jaromil@dyne.org>
Date: Mon, 17 Jul 2017 14:13:47 +0200
Subject: instructions and build target in makefile

---
 Makefile | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

(limited to 'Makefile')

diff --git a/Makefile b/Makefile
index 942de72..5c4161d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
 BUILD=go build
 
-
 SOURCES=scorsh.go \
 types.go \
 config.go \
@@ -10,8 +9,13 @@ workers.go
 
 all: scorsh
 
+deps:
+	go get 'github.com/fsnotify/fsnotify'
+	go get 'github.com/libgit2/git2go'
+	go get 'github.com/go-yaml/yaml'
+	go get 'golang.org/x/crypto/openpgp'
 
-scorsh: $(SOURCES) 
+scorsh: $(SOURCES)
 	$(BUILD) scorsh.go types.go config.go spooler.go commits.go workers.go
 
 clean:
-- 
cgit v1.2.3