# Copyright (C) 2006 International Business Machines and others. # All Rights Reserved. # This file is distributed under the Common Public License. ## $Id$ # Author: Andreas Waechter IBM 2006-04-13 AUTOMAKE_OPTIONS = foreign EXTRA_DIST = doxydoc/doxygen.conf ######################################################################## # Subdirectories # ######################################################################## # subdirs is set by configure as the list of all subdirectories to recurse # into SUBDIRS = $(subdirs) ######################################################################## # Extra Targets # ######################################################################## test: all cd Vol; $(MAKE) test unitTest: test tests: all for dir in $(subdirs); do \ if test -r $$dir/test/Makefile; then \ (cd $$dir; $(MAKE) test) \ fi; \ done unitTests: tests doxydoc: for dir in $(subdirs) ; do \ if test $$dir != @PACKAGE_NAME@ && test -r $$dir/doxydoc ; then \ (cd $$dir ; $(MAKE) doxydoc) \ fi ; \ done ; \ if test -r doxydoc/doxygen.conf ; then \ doxygen doxydoc/doxygen.conf ; \ fi clean-doxydoc: ( cd doxydoc ; rm -rf html *.log *.tag ) # DocInstallDir is defined in Makemain.inc and is specific to the package. # For the short term, adopt the notion that we install only the package # doxydoc. install-doxydoc: doxydoc if test -r doxydoc/doxygen.conf ; then \ $(mkdir_p) $(DocInstallDir) ; \ cp -R doxydoc $(DocInstallDir) ; \ fi uninstall-doxydoc: rm -rf $(DocInstallDir)/doxydoc clean-local: clean-doxydoc uninstall-local: uninstall-doxydoc .PHONY: tests unitTests doxydoc ######################################################################## # Maintainer Stuff # ######################################################################## # Files that are generated and should be cleaned with make distclean DISTCLEANFILES = coin_subdirs.txt include BuildTools/Makemain.inc