Lines Matching +full:make +full:- +full:docs
2 # unless '--enable-doxygen-doc' is configured.
4 # make # 'make doxygen' would be auto executed
5 # make doxygen # generating doxygen documentation
6 # make doxygen-doc # same as 'make doxygen'
7 # make clean # clean docs generated by doxygen
8 # make install # install doxygen documentation
9 # make uninstall # uninstall doxygen documentation
16 # Use 'make clean' to clean docs generated by doxygen.
17 clean-local:
18 -rm -rf $(DX_CLEANFILES)
22 $(man3_MANS): doxygen-doc
24 # Docs will be installed. It may be one or more docs supported
28 # Rules for installing docs generated by doxygen into $(htmldir),
30 install-data-local:
31 @if ! test -d "$(DESTDIR)$(htmldir)"; then \
36 echo "cp -pR $$d '$(DESTDIR)$(htmldir)/'"; \
37 cp -pR $$d '$(DESTDIR)$(htmldir)/'; \
40 # Rules for uninstalling docs generated by doxygen from $(htmldir)
41 uninstall-local:
44 echo "test ! -d '$(DESTDIR)$(htmldir)/'$$d || \
45 { find '$(DESTDIR)$(htmldir)/'$$d -type d ! -perm -200 -exec chmod u+w '{}' ';' && \
46 rm -rf '$(DESTDIR)$(htmldir)/'$$d; }"; \
47 test ! -d '$(DESTDIR)$(htmldir)/'$$d || \
48 { find '$(DESTDIR)$(htmldir)/'$$d -type d ! -perm -200 -exec chmod u+w '{}' ';' && \
49 rm -rf '$(DESTDIR)$(htmldir)/'$$d; }; \
53 doxygen: doxygen-doc