15 lines
180 B
Makefile
15 lines
180 B
Makefile
.PHONY: build test package
|
|
|
|
build:
|
|
go build -o hello-world main.go
|
|
|
|
test:
|
|
go test -v ./...
|
|
|
|
package:
|
|
zip hello-world.zip hello-world
|
|
|
|
clean:
|
|
rm -f hello-world hello-world.zip
|
|
|