miller/Makefile
John Kerl c684a7ff2f
Add Makefiles for Go (#732)
* Add Makefiles for Go

* Makefile edits for Windows

* More how-to for CI debug
2021-11-04 11:27:44 -04:00

12 lines
175 B
Makefile

build:
make -C go build
check:
make -C go check
install:
make -C go install
make -C man install
# Go does its own dependency management, outside of make.
.PHONY: build