Changeset 1582 for trunk/Makefile.am
- Timestamp:
- Jul 28, 2010 10:53:11 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r1572 r1582 37 37 unitTests: tests 38 38 39 # Generate doxygen doc'n in subdirectories (except @PACKAGE_NAME@) if a doxydoc 40 # directory is present, then do the base, if present. 41 39 42 doxydoc: 40 cd $(srcdir); doxygen doxydoc/doxygen.conf 43 for dir in $(subdirs) ; do \ 44 if test $$dir != @PACKAGE_NAME@ && test -r $$dir/doxydoc ; then \ 45 (cd $$dir ; $(MAKE) doxydoc) \ 46 fi ; \ 47 done ; \ 48 if test -r doxydoc/doxygen.conf ; then \ 49 doxygen doxydoc/doxygen.conf ; \ 50 fi 51 52 clean-doxydoc: 53 ( cd doxydoc ; rm -rf html *.log *.tag ) 54 55 # DocInstallDir is defined in Makemain.inc and is specific to the package. 56 # For the short term, adopt the notion that we install only the package 57 # doxydoc. 58 59 install-doxydoc: doxydoc 60 if test -r doxydoc/doxygen.conf ; then \ 61 $(mkdir_p) $(DocInstallDir) ; \ 62 cp -R doxydoc $(DocInstallDir) ; \ 63 fi 64 65 uninstall-doxydoc: 66 rm -rf $(DocInstallDir)/doxydoc 67 68 clean-local: clean-doxydoc 69 # install-data-local: install-doxydoc 70 uninstall-local: uninstall-doxydoc 41 71 42 72 .PHONY: test unitTest tests unitTests doxydoc
Note: See TracChangeset
for help on using the changeset viewer.