123456789101112131415161718192021222324 |
- .PHONY: distclean-edoc edoc
- EDOC_OPTS ?=
- ifneq ($(wildcard doc/overview.edoc),)
- docs:: edoc
- endif
- distclean:: distclean-edoc
- edoc: distclean-edoc doc-deps
- $(gen_verbose) $(ERL) -eval 'edoc:application($(PROJECT), ".", [$(EDOC_OPTS)]), halt().'
- distclean-edoc:
- $(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info
|