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

11 lines
161 B
Makefile

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