- Timestamp:
- Jul 28, 2010 10:53:11 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Clp/Makefile.am
r1579 r1582 83 83 unitTest: test 84 84 85 clean-local: 85 # Doxygen documentation 86 87 doxydoc: 88 doxygen doxydoc/doxygen.conf 89 90 clean-doxydoc: 91 ( cd doxydoc ; rm -rf html *.log *.tag ) 92 93 94 clean-local: clean-doxydoc 86 95 if test -r test/Makefile; then cd test; $(MAKE) clean; fi 87 96 … … 93 102 uninstall-local: uninstall-doc 94 103 95 .PHONY: test unitTest 104 .PHONY: test unitTest doxydoc 96 105 97 106 ######################################################################## -
trunk/Clp/Makefile.in
r1581 r1582 819 819 unitTest: test 820 820 821 clean-local: 821 # Doxygen documentation 822 823 doxydoc: 824 doxygen doxydoc/doxygen.conf 825 826 clean-doxydoc: 827 ( cd doxydoc ; rm -rf html *.log *.tag ) 828 829 clean-local: clean-doxydoc 822 830 if test -r test/Makefile; then cd test; $(MAKE) clean; fi 823 831 … … 829 837 uninstall-local: uninstall-doc 830 838 831 .PHONY: test unitTest 839 .PHONY: test unitTest doxydoc 832 840 833 841 @COIN_HAS_PKGCONFIG_TRUE@install-data-hook: -
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 -
trunk/Makefile.in
r1581 r1582 613 613 clean: clean-recursive 614 614 615 clean-am: clean-generic clean-libtool mostlyclean-am615 clean-am: clean-generic clean-libtool clean-local mostlyclean-am 616 616 617 617 distclean: distclean-recursive … … 659 659 ps-am: 660 660 661 uninstall-am: uninstall-info-am 661 uninstall-am: uninstall-info-am uninstall-local 662 662 663 663 uninstall-info: uninstall-info-recursive 664 664 665 665 .PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am am--refresh check \ 666 check-am clean clean-generic clean-libtool clean- recursive\667 c tags ctags-recursive dist dist-all dist-bzip2 dist-gzip\668 dist- shar dist-tarZ dist-zip distcheck distclean \666 check-am clean clean-generic clean-libtool clean-local \ 667 clean-recursive ctags ctags-recursive dist dist-all dist-bzip2 \ 668 dist-gzip dist-shar dist-tarZ dist-zip distcheck distclean \ 669 669 distclean-generic distclean-libtool distclean-recursive \ 670 670 distclean-tags distcleancheck distdir distuninstallcheck dvi \ … … 676 676 maintainer-clean-recursive mostlyclean mostlyclean-generic \ 677 677 mostlyclean-libtool mostlyclean-recursive pdf pdf-am ps ps-am \ 678 tags tags-recursive uninstall uninstall-am uninstall-info-am 678 tags tags-recursive uninstall uninstall-am uninstall-info-am \ 679 uninstall-local 679 680 680 681 … … 697 698 unitTests: tests 698 699 700 # Generate doxygen doc'n in subdirectories (except @PACKAGE_NAME@) if a doxydoc 701 # directory is present, then do the base, if present. 702 699 703 doxydoc: 700 cd $(srcdir); doxygen doxydoc/doxygen.conf 704 for dir in $(subdirs) ; do \ 705 if test $$dir != @PACKAGE_NAME@ && test -r $$dir/doxydoc ; then \ 706 (cd $$dir ; $(MAKE) doxydoc) \ 707 fi ; \ 708 done ; \ 709 if test -r doxydoc/doxygen.conf ; then \ 710 doxygen doxydoc/doxygen.conf ; \ 711 fi 712 713 clean-doxydoc: 714 ( cd doxydoc ; rm -rf html *.log *.tag ) 715 716 # DocInstallDir is defined in Makemain.inc and is specific to the package. 717 # For the short term, adopt the notion that we install only the package 718 # doxydoc. 719 720 install-doxydoc: doxydoc 721 if test -r doxydoc/doxygen.conf ; then \ 722 $(mkdir_p) $(DocInstallDir) ; \ 723 cp -R doxydoc $(DocInstallDir) ; \ 724 fi 725 726 uninstall-doxydoc: 727 rm -rf $(DocInstallDir)/doxydoc 728 729 clean-local: clean-doxydoc 730 # install-data-local: install-doxydoc 731 uninstall-local: uninstall-doxydoc 701 732 702 733 .PHONY: test unitTest tests unitTests doxydoc
Note: See TracChangeset
for help on using the changeset viewer.