Converter - type selection - subdir conversion - htm extension Gemini - index.gmi - topics and latest - gmi.atom feed Add pull (http(s)) operation - peers.pub.conf and peers.priv.conf HTML5 format & fixes by Novaburst Phony target (thanks Gergely) May Basic unit renamed from Note to Text. New modular text-parser, internal to Logarion, for generic notation parsing. The default input format is now a much plainer text. Logarion created texts have part of the UUID in filename. Logarion's index re-written in Messagepack format. Removed `indices` command. They are generated during `convert`. git-svn-id: file:///srv/svn/repo/kosuzu/trunk@2 eb64cd80-c68d-6f47-b6a3-0ada418499da
19 lines
331 B
Makefile
19 lines
331 B
Makefile
all:
|
|
dune build
|
|
|
|
cli:
|
|
dune build cli/cli.exe
|
|
|
|
clean:
|
|
dune clean
|
|
|
|
tgz:
|
|
dune subst
|
|
dune build
|
|
cp _build/default/cli/cli.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
|