logarion/Makefile

19 lines
331 B
Makefile
Raw Permalink Normal View History

all:
dune build
2016-08-30 23:04:12 +02:00
cli:
dune build cli/txt.exe
2016-08-30 23:04:12 +02:00
clean:
dune clean
tgz:
dune subst
dune build
cp _build/default/cli/txt.exe txt
strip txt
tar czvf "logarion-$(shell date -r _build/default/cli/cli.exe "+%y-%m-%d")-$(shell uname -s)-$(shell uname -m)-$(shell git rev-parse --short HEAD).tar.gz" txt readme
rm txt
.PHONY: cli