summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKatolaZ <katolaz@freaknet.org>2017-07-19 06:36:00 +0100
committerKatolaZ <katolaz@freaknet.org>2017-07-19 06:36:00 +0100
commit40c8aae58491b07adb05d348d1ddf86ce5ec2be8 (patch)
tree52dae87ff1dc2a65a3fe45be5f18053fb0d62ac1 /Makefile
parent30e2f9e350197cfda09766ef34112e4e3eb261b9 (diff)
Added Licence. Amended Makefile: scorsh -> scorshd. getting closer.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 5c4161d..def6dd9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
BUILD=go build
-SOURCES=scorsh.go \
+SERVER_SOURCES=scorshd.go \
types.go \
config.go \
spooler.go \
commits.go \
workers.go
-all: scorsh
+all: scorshd
deps:
go get 'github.com/fsnotify/fsnotify'
@@ -15,8 +15,8 @@ deps:
go get 'github.com/go-yaml/yaml'
go get 'golang.org/x/crypto/openpgp'
-scorsh: $(SOURCES)
- $(BUILD) scorsh.go types.go config.go spooler.go commits.go workers.go
+scorshd: $(SERVER_SOURCES)
+ $(BUILD) scorshd.go types.go config.go spooler.go commits.go workers.go
clean:
- rm scorsh
+ rm scorshd