# Copyright (c) 2005-2006 Andre Merzky (andre@merzky.net) # Copyright (c) 2005-2008 Ole Weidner (oweidner@cct.lsu.edu) # # Use, modification and distribution is subject to the Boost Software # License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) SAGA_ROOT = ../../ include $(SAGA_ROOT)/make/saga.mk .PHONY: doxygen doxygen: ifeq "x$(DOXYGEN)" "x" @$(ECHO) " cannot generate API documentation - doxygen is missing" else @$(ECHO) " generating API documentation" @$(DOXYGEN) > $(DEVNULL) endif install:: @$(ECHO) " installing C++ and Python API documentation" @$(INSTALL) -d cpp share/saga/doc/ @$(INSTALL) -d python share/saga/doc/ # FIXME: we should actually delete the svn traces # @$(FIND) $(SAGA_LOCATION)/share/saga/doc/ -name .svn -exec rm -rf {} \;