Skip to content

Commit cade244

Browse files
committed
Add makefile
1 parent 1365b07 commit cade244

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Makefile

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
default: all
2+
3+
client:
4+
go build -o ./build/gq-client ./cmd/gq-client
5+
6+
server:
7+
go build -o ./build/gq-server ./cmd/gq-server
8+
9+
all: client server
10+
11+
clean:
12+
rm -rf ./build/gq-*

0 commit comments

Comments
 (0)