mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Add a clean-docs target to the Makefile
This commit is contained in:
parent
1219837e91
commit
bc2d53d2a5
1 changed files with 9 additions and 3 deletions
12
Makefile
12
Makefile
|
@ -15,14 +15,20 @@ deps:
|
|||
app: deps
|
||||
@$(REBAR) compile
|
||||
|
||||
docs:
|
||||
@$(REBAR) doc skip_deps=true
|
||||
|
||||
clean:
|
||||
@$(REBAR) clean
|
||||
rm -f test/*.beam
|
||||
rm -f erl_crash.dump
|
||||
|
||||
docs: clean-docs
|
||||
@$(REBAR) doc skip_deps=true
|
||||
|
||||
clean-docs:
|
||||
rm -f doc/*.css
|
||||
rm -f doc/*.html
|
||||
rm -f doc/*.png
|
||||
rm -f doc/edoc-info
|
||||
|
||||
# Tests.
|
||||
|
||||
deps/proper:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue