mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
* src/mod_pubsub/mod_pubsub.erl: Most of functions now works
SVN Revision: 121
This commit is contained in:
parent
91fa7350c6
commit
e9fb1795d8
@ -1,3 +1,7 @@
|
||||
2003-07-08 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_pubsub/mod_pubsub.erl: Most of functions now works
|
||||
|
||||
2003-07-07 Alexey Shchepin <alexey@sevcom.net>
|
||||
|
||||
* src/mod_pubsub/mod_pubsub.erl: Pub/sub implementation (not
|
||||
|
28
src/mod_pubsub/Makefile
Normal file
28
src/mod_pubsub/Makefile
Normal file
@ -0,0 +1,28 @@
|
||||
# $Id$
|
||||
|
||||
include ../Makefile.inc
|
||||
|
||||
INCLUDES = -I/usr/lib/erlang/usr/include \
|
||||
-I$(EI_DIR)/include \
|
||||
-I/usr/local/include
|
||||
|
||||
LIBDIRS = -L$(EI_DIR)/lib -L/usr/local/lib
|
||||
|
||||
|
||||
OUTDIR = ..
|
||||
EFLAGS = -I .. -pz ..
|
||||
OBJS = \
|
||||
$(OUTDIR)/mod_pubsub.beam
|
||||
|
||||
all: $(OBJS)
|
||||
|
||||
$(OUTDIR)/%.beam: %.erl
|
||||
erlc -W $(EFLAGS) -o $(OUTDIR) $<
|
||||
|
||||
|
||||
clean:
|
||||
rm -f *.beam
|
||||
|
||||
TAGS:
|
||||
etags *.erl
|
||||
|
1078
src/mod_pubsub/mod_pubsub.erl
Normal file
1078
src/mod_pubsub/mod_pubsub.erl
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user