From 40c8aae58491b07adb05d348d1ddf86ce5ec2be8 Mon Sep 17 00:00:00 2001 From: KatolaZ Date: Wed, 19 Jul 2017 06:36:00 +0100 Subject: Added Licence. Amended Makefile: scorsh -> scorshd. getting closer. --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3