docs.mk 450 B

12345678910111213141516171819
  1. # Copyright (c) 2015, Viktor Söderqvist <viktor@zuiderkwast.se>
  2. # This file is part of erlang.mk and subject to the terms of the ISC License.
  3. .PHONY: docs-deps
  4. # Configuration.
  5. ALL_DOC_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(DOC_DEPS))
  6. # Targets.
  7. $(foreach dep,$(DOC_DEPS),$(eval $(call dep_target,$(dep))))
  8. ifneq ($(SKIP_DEPS),)
  9. doc-deps:
  10. else
  11. doc-deps: $(ALL_DOC_DEPS_DIRS)
  12. @for dep in $(ALL_DOC_DEPS_DIRS) ; do $(MAKE) -C $$dep; done
  13. endif