Skip to content
This repository has been archived by the owner on Apr 20, 2021. It is now read-only.

Commit

Permalink
Add wcloud Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tomwilkie committed Aug 25, 2016
1 parent ef55901 commit 9cbab40
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ cover/cover
socks/proxy
socks/image.tar
runner/runner
cmd/wcloud/wcloud
*.pyc
*~
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ test:
- cd $SRCDIR/cover; make
- cd $SRCDIR/socks; make
- cd $SRCDIR/runner; make
- go build ./cmd/wcloud
- cd $SRCDIR/cmd/wcloud; make

11 changes: 11 additions & 0 deletions cmd/wcloud/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: all clean

all: wcloud

wcloud: *.go
go get ./$(@D)
go build -o $@ ./$(@D)

clean:
rm -rf wcloud
go clean ./...

0 comments on commit 9cbab40

Please sign in to comment.