mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-12 15:57:31 +01:00
2f7f3d9b00
(thanks to Leif Johansson) * src/ejabberd_auth.erl: Added support for ldap_rootdn and ldap_password options (thanks to Stefan de Konink) * src/mod_vcard_ldap.erl: Likewise * src/ejabberd_router.erl: Now possible to route packet via function call instead of message sending * src/ejabberd_sm.erl: Added function route/3, use it in route table * src/ejabberd_local.erl: Likewise * src/ejabberd_s2s.erl: Likewise * (all): Fixed spelling of word "authentication" * src/*/Makefile.in: Replaced erlc with @ERLC@ SVN Revision: 285
31 lines
399 B
Makefile
31 lines
399 B
Makefile
# $Id$
|
|
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@ @ERLANG_CFLAGS@
|
|
CPPFLAGS = @CPPFLAGS@
|
|
LDFLAGS = @LDFLAGS@
|
|
LIBS = @LIBS@ @ERLANG_LIBS@
|
|
|
|
SUBDIRS =
|
|
|
|
OUTDIR = ..
|
|
EFLAGS = -I .. -pz ..
|
|
OBJS = \
|
|
$(OUTDIR)/mod_muc.beam \
|
|
$(OUTDIR)/mod_muc_room.beam
|
|
|
|
all: $(OBJS)
|
|
|
|
$(OUTDIR)/%.beam: %.erl
|
|
@ERLC@ -W $(EFLAGS) -o $(OUTDIR) $<
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
|
|
distclean: clean
|
|
rm -f Makefile
|
|
|
|
TAGS:
|
|
etags *.erl
|
|
|