mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-17 16:38:54 +00:00
16 lines
325 B
Makefile
16 lines
325 B
Makefile
# TODO: 'cp go/mlr .' or 'copy go\mlr.exe .' with reliable platform detection
|
|
# and no confusing error messages.
|
|
|
|
build:
|
|
make -C go build
|
|
@echo Miller executable is: go/mlr
|
|
|
|
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
|