diff options
author | KatolaZ <katolaz@freaknet.org> | 2017-07-15 01:35:36 +0100 |
---|---|---|
committer | KatolaZ <katolaz@freaknet.org> | 2017-07-15 01:35:36 +0100 |
commit | 74f8a74ecf8284fd4182cabab797f17bb18e7032 (patch) | |
tree | fccf6ded5d4a894b5863039b99ce977023bd0f79 /Makefile | |
parent | 726b399e4747032a3d052339cd62c57ae5b6767c (diff) |
Added Makefile -- gofmt
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..942de72 --- /dev/null +++ b/Makefile @@ -0,0 +1,18 @@ +BUILD=go build + + +SOURCES=scorsh.go \ +types.go \ +config.go \ +spooler.go \ +commits.go \ +workers.go + +all: scorsh + + +scorsh: $(SOURCES) + $(BUILD) scorsh.go types.go config.go spooler.go commits.go workers.go + +clean: + rm scorsh |