mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
13 lines
328 B
Makefile
13 lines
328 B
Makefile
all: c
|
|
devall: c install doc
|
|
# TODO: the install target exists to put most-recent mlr executable in the
|
|
# path to be picked up by the mlr-execs in the docs dir. better would be to
|
|
# export PATH here with ./c at its head.
|
|
c: .always
|
|
make -C c top
|
|
doc: .always
|
|
cd doc && poki
|
|
install: .always
|
|
make -C c install
|
|
.always:
|
|
@true
|