Files
seer/tests/hellogo/Makefile
2023-01-29 16:45:00 -06:00

11 lines
126 B
Makefile

.PHONY: all
all: hellogo
hellogo: hellogo.go
go build -gcflags=all="-N -l" hellogo.go
.PHONY: clean
clean:
rm -f hellogo