123456789101112131415161718192021 |
- .PHONY: distclean-edoc
- EDOC_OPTS ?=
- docs:: distclean-edoc
- $(gen_verbose) erl -noshell \
- -eval 'edoc:application($(PROJECT), ".", [$(EDOC_OPTS)]), init:stop().'
- distclean:: distclean-edoc
- distclean-edoc:
- $(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info
|