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