mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
12 lines
175 B
Makefile
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
|