blob: 5249d0899c760e9383c6905f896ac3fde65e71fd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright (c) 2013-2014, Loïc Hoguin <[email protected]>
# This file is part of erlang.mk and subject to the terms of the ISC License.
.PHONY: distclean-edoc
# Configuration.
EDOC_OPTS ?=
# Core targets.
docs:: distclean-edoc
$(gen_verbose) erl -noshell \
-eval 'edoc:application($(PROJECT), ".", [$(EDOC_OPTS)]), init:stop().'
distclean:: distclean-edoc
# Plugin-specific targets.
distclean-edoc:
$(gen_verbose) rm -f doc/*.css doc/*.html doc/*.png doc/edoc-info
|