dect
/
libnl
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
libnl/doc/Makefile.am

18 lines
417 B
Makefile
Raw Normal View History

# -*- Makefile -*-
.PHONY: gendoc
ASCIIDOCOPTS=-n -a pygments -a toc -a language=c -a icons \
-a imagesdir="images/" \
-a stylesdir="${abs_srcdir}/stylesheets/"
gendoc:
doxygen Doxyfile;
./gen-tags.sh | ./tags2dict.sh > libnl.dict
asciidoc $(ASCIIDOCOPTS) core.txt
./doxygen-link.py libnl.dict core.html > core.tmp.html
mv core.tmp.html core.html
distclean-local:
rm -f api/* libnl.tags *.html;