6 lines
101 B
Makefile
6 lines
101 B
Makefile
|
all:
|
||
|
cd bin && CGO_ENABLED=0 go build -x -o pcl main.go
|
||
|
|
||
|
clean:
|
||
|
cd bin && go clean -x && rm -f pcl
|