Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. # -*- makefile -*- Automake include file
  2. # $Id: autodocs-cc.ami 23704 2005-06-10 17:36:13Z mvidner $
  3.  
  4. # This is a common base for autodocs-cc-{,off}.ami
  5. # and should NOT be used directly
  6.  
  7. # Builds source documentation for C++ sources
  8. # Uses doxygen (ydoxygen)
  9. # PARAMETERS:
  10. # AUTODOCS_CC: Directories that the C++ autodocs is built from
  11. # Optional - the default is $(srcdir)/../../src
  12. # AUTODOCS_DEPS: dependencies of the docs, default is $(AUTODOCS_CC)/*.h
  13. # AUTODOCS_PARAMS: more params for ydoxygen
  14.  
  15. AUTODOCS_CC ?= $(srcdir)/../../src
  16. AUTODOCS_DEPS ?= $(AUTODOCS_CC)/*.h
  17.  
  18. html_data = index.html $(filter-out index.html, $(wildcard *.html *.png)) doxygen.css @RPMNAME@.tag
  19. CLEANFILES = $(html_data) doxygen.log doxygen.conf installdox
  20.  
  21. doxygen.css @RPMNAME@.tag: index.html
  22.  
  23. index.html: $(AUTODOCS_DEPS)
  24. ${YDOXYGEN} PROJECT_NAME=@RPMNAME@ INPUT=$(AUTODOCS_CC) $(AUTODOCS_PARAMS)
Add Comment
Please, Sign In to add comment