testbed/Makefile

11 lines
101 B
Makefile
Raw Normal View History

.PHONY: build run clean
build:
go build -o hello main.go
run: build
./hello
clean:
rm -f hello