Skip to content

Commit

Permalink
Add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeuw committed Feb 27, 2018
1 parent 1365b07 commit cade244
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
default: all

client:
go build -o ./build/gq-client ./cmd/gq-client

server:
go build -o ./build/gq-server ./cmd/gq-server

all: client server

clean:
rm -rf ./build/gq-*

0 comments on commit cade244

Please sign in to comment.