gmi-web/Makefile
Talon Poole 2ade53f268 three --css modes: gmi.css, base and none
when "none" inline tags will be wrapped in <p>

--image, --audio and --video now accept the extensions to inline
  so what's possible to load isn't maintained here

--lang is now referred to as --html
  --html and --body are mutually exclusive
2021-02-11 23:26:29 +00:00

17 lines
241 B
Makefile

build: gmi-web.1 gmi.css.5
npm install
gmi-web.1: gmi-web.1.scd
scdoc < $< > $@
gmi.css.5: gmi.css.5.scd
scdoc < $< > $@
example/test.html: example/test.gmi
./test.sh
clean:
rm -rf gmi-web.1 gmi.css.5 node_modules
.PHONY: clean