8 lines
152 B
Makefile
8 lines
152 B
Makefile
build:
|
|
go build -o bin/helloGo main.go client.go packets.go server.go
|
|
|
|
server:
|
|
go run main.go server
|
|
|
|
test:
|
|
go run main.go client testFiles/testFile
|