Changeset 2 in code for trunk/Makefile


Ignore:
Timestamp:
Nov 3, 2021, 10:29:57 PM (3 years ago)
Author:
fox
Message:

Samhain 21

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Makefile

    r1 r2  
    1 all: cli
     1all:
     2        dune build
    23
    34cli:
    4         dune build src/logarion_cli.exe
     5        dune build cli/cli.exe
    56
    67clean:
    78        dune clean
    89
    9 theme-dark:
    10         sassc share/sass/main-dark.sass > share/static/main.css
     10tgz:
     11        dune subst
     12        dune build
     13        cp _build/default/cli/cli.exe txt
     14        strip txt
     15        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
     16        rm txt
    1117
    12 theme-light:
    13         sassc share/sass/main-light.sass > share/static/main.css
    14 
    15 tgz:
    16         cp _build/default/src/logarion_cli.exe logarion
    17         strip logarion
    18         tar czvf "logarion-$(shell ./logarion --version)-$(shell uname -s)-$(shell uname -m)-$(shell git rev-parse --short HEAD).tar.gz" share logarion
     18.PHONY: cli
Note: See TracChangeset for help on using the changeset viewer.