edoc.mk 536 B

123456789101112131415161718192021222324
  1. # Copyright (c) 2013-2015, Loïc Hoguin <essen@ninenines.eu>
  2. # This file is part of erlang.mk and subject to the terms of the ISC License.
  3. .PHONY: distclean-edoc edoc
  4. # Configuration.
  5. EDOC_OPTS ?=
  6. # Core targets.
  7. ifneq ($(wildcard doc/overview.edoc),)
  8. docs:: edoc
  9. endif
  10. distclean:: distclean-edoc
  11. # Plugin-specific targets.
  12. edoc: distclean-edoc doc-deps
  13. $(gen_verbose) $(ERL) -eval 'edoc:application($(PROJECT), ".", [$(EDOC_OPTS)]), halt().'
  14. distclean-edoc:
  15. $(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info