golang-examples/example-go-channel/Makefile

18 lines
439 B
Makefile
Raw Normal View History

2022-11-14 08:06:15 -06:00
all: 5threads simple return-vals sendFunction
5threads:
2022-11-13 14:19:18 -06:00
GO111MODULE="off" go build -v -x -o ~/go/bin/5threads 5threads.go
5threads
simple:
GO111MODULE="off" go build -v -x -o ~/go/bin/simple-worker simple-worker.go
2022-11-13 14:55:38 -06:00
simple-worker
return-vals:
GO111MODULE="off" go build -v -x -o ~/go/bin/return-vals return-vals.go
return-vals
2022-11-14 08:06:15 -06:00
sendFunction:
GO111MODULE="off" go build -v -x -o ~/go/bin/sendFunction sendFunction.go
sendFunction