mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
85412f0a41
* doc/Makefile: In Clean do not remove html. In new Distclean, remove also html. * doc/Makefile: When cleaning, remove contributed_modules.tex * src/Makefile.in: Fix arguments to Install program * doc/guide.tex: Provide only an example of language option * doc/guide.html: Likewise * doc/guide.tex: mod_muc can run in several nodes of cluster * doc/guide.html: Likewise * doc/api/process-one.css: Add some style to HTML elements * src/ejabberd_listener.erl: Fix EDoc errors * src/web/ejabberd_web_admin.erl: Likewise * src/ejabberd_hooks.erl: Explanation in EDoc of some functions * doc/guide.tex: Explain that account creation is only supported by internal and odbc authentication methods * doc/guide.html: Likewise * src/Makefile.in: The path to the installed copy of ejabberd Guide is set in the environment variable EJABBERD_DOC_PATH (EJAB-837). * src/web/ejabberd_web_admin.erl: Likewise * src/ejabberdctl.template: Likewise * doc/guide.tex: Likewise * doc/guide.html: Likewise SVN Revision: 1937
66 lines
1.6 KiB
Makefile
66 lines
1.6 KiB
Makefile
# $Id$
|
|
|
|
SHELL = /bin/bash
|
|
|
|
CONTRIBUTED_MODULES = ""
|
|
ifeq ($(shell ls mod_http_bind.tex),mod_http_bind.tex)
|
|
CONTRIBUTED_MODULES += "\\n\\setboolean{modhttpbind}{true}"
|
|
endif
|
|
ifeq ($(shell ls mod_http_fileserver.tex),mod_http_fileserver.tex)
|
|
CONTRIBUTED_MODULES += "\\n\\setboolean{modhttpfileserver}{true}"
|
|
endif
|
|
|
|
|
|
all: release pdf html
|
|
|
|
release:
|
|
@echo "Notes for the releaser:"
|
|
@echo "* Do not forget to add a link to the release notes in guide.tex"
|
|
@echo "* Do not forget to update the version number in src/ejabberd.app!"
|
|
@echo "* Do not forget to update the features in introduction.tex (including \new{} and \improved{} tags)."
|
|
@echo "Press any key to continue"
|
|
@read foo
|
|
@echo "% ejabberd version (automatically generated)." > version.tex
|
|
@echo "\newcommand{\version}{"`sed '/vsn/!d;s/\(.*\)"\(.*\)"\(.*\)/\2/' ../src/ejabberd.app`"}" >> version.tex
|
|
@echo -n "% Contributed modules (automatically generated)." > contributed_modules.tex
|
|
@echo -e "$(CONTRIBUTED_MODULES)" >> contributed_modules.tex
|
|
|
|
html: guide.html dev.html features.html
|
|
|
|
pdf: guide.pdf features.pdf
|
|
|
|
clean:
|
|
rm -f *.aux
|
|
rm -f *.haux
|
|
rm -f *.htoc
|
|
rm -f *.idx
|
|
rm -f *.ilg
|
|
rm -f *.ind
|
|
rm -f *.log
|
|
rm -f *.out
|
|
rm -f *.pdf
|
|
rm -f *.toc
|
|
[ ! -f contributed_modules.tex ] || rm contributed_modules.tex
|
|
|
|
distclean: clean
|
|
rm -f *.html
|
|
|
|
guide.html: guide.tex
|
|
hevea -fix -pedantic guide.tex
|
|
|
|
dev.html: dev.tex
|
|
hevea -fix -pedantic dev.tex
|
|
|
|
features.html: features.tex
|
|
hevea -fix -pedantic features.tex
|
|
|
|
guide.pdf: guide.tex
|
|
pdflatex guide.tex
|
|
pdflatex guide.tex
|
|
pdflatex guide.tex
|
|
makeindex guide.idx
|
|
pdflatex guide.tex
|
|
|
|
features.pdf: features.tex
|
|
pdflatex features.tex
|