Add wcloud Makefile

This commit is contained in:
Tom Wilkie
2016-08-25 10:49:29 +02:00
parent ef559010df
commit 9cbab402fb
3 changed files with 13 additions and 1 deletions

11
cmd/wcloud/Makefile Normal file
View File

@@ -0,0 +1,11 @@
.PHONY: all clean
all: wcloud
wcloud: *.go
go get ./$(@D)
go build -o $@ ./$(@D)
clean:
rm -rf wcloud
go clean ./...