tMakefile - libdevuansdk - common library for devuan's simple distro kits HTML git clone https://git.parazyd.org/libdevuansdk DIR Log DIR Files DIR Refs DIR Submodules DIR README DIR LICENSE --- tMakefile (412B) --- 1 all: clean html man 2 3 html: 4 @echo generating html... 5 @./nanodoc html 6 7 man: 8 @echo generating manpages... 9 @./nanodoc man 10 11 clean: 12 @echo cleaning... 13 @rm -rf html man nav.html 14 @sed -i -e 's:index.html">.*:html">NAME</a>:' static/head.html 15 @sed -i -e 's:Subtitle">.*:Subtitle">DESC</span>:' static/head.html 16 @sed -i -e 's:libdevuansdk-.*:libdevuansdk-VERSION</a>:' static/foot.html 17 18 .PHONY: all html man clean