17 lines
335 B
Makefile
17 lines
335 B
Makefile
all:
|
|
dune build
|
|
|
|
cli:
|
|
dune build cli/cli.exe
|
|
|
|
clean:
|
|
dune clean
|
|
|
|
tgz:
|
|
cp _build/default/cli/cli.exe logarion
|
|
strip logarion
|
|
tar czvf "logarion-$(shell date -r _build/default/src/logarion_cli.exe "+%y-%m-%d")-$(shell uname -s)-$(shell uname -m)-$(shell git rev-parse --short HEAD).tar.gz" share logarion
|
|
rm logarion
|
|
|
|
.PHONY: cli
|