mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
bebc5a137a
SVN Revision: 2696
19 lines
450 B
Makefile
19 lines
450 B
Makefile
APPNAME = ejabberd
|
|
VSN = $(shell sed '/vsn/!d;s/\(.*\)"\(.*\)"\(.*\)/\2/' ../../src/ejabberd.app)
|
|
|
|
DOCDIR=.
|
|
SRCDIR=../../src
|
|
|
|
.PHONY = all
|
|
|
|
all: docs
|
|
|
|
clean:
|
|
rm -f *.html
|
|
rm edoc-info
|
|
rm erlang.png
|
|
|
|
docs:
|
|
erl -noshell -run edoc_run application \
|
|
"'$(APPNAME)'" '"$(SRCDIR)"' '[{dir,"$(DOCDIR)"},{packages, false},{todo,false},{private,true},{def,{vsn,"$(VSN)"}},{stylesheet,"process-one.css"},{overview,"$(DOCDIR)/overview.edoc"}]' -s init stop
|