diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-07-19 06:36:00 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-07-19 06:36:00 +0100 |
commit | 40c8aae58491b07adb05d348d1ddf86ce5ec2be8 (patch) | |
tree | 52dae87ff1dc2a65a3fe45be5f18053fb0d62ac1 /Makefile | |
parent | 30e2f9e350197cfda09766ef34112e4e3eb261b9 (diff) |
Added Licence. Amended Makefile: scorsh -> scorshd. getting closer.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |