mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-20 17:27:00 +01:00
b75fb79677
* src/web/ejabberd_web.erl: Added interface for access rules configuration SVN Revision: 221
17 lines
229 B
Makefile
17 lines
229 B
Makefile
|
|
include ..\Makefile.inc
|
|
|
|
OUTDIR = ..
|
|
EFLAGS = -I .. -pz ..
|
|
|
|
OBJS = \
|
|
$(OUTDIR)\mod_pubsub.beam
|
|
|
|
ALL : $(OBJS)
|
|
|
|
CLEAN :
|
|
-@erase $(OBJS)
|
|
|
|
$(OUTDIR)\mod_pubsub.beam : mod_pubsub.erl
|
|
erlc -W $(EFLAGS) -o $(OUTDIR) mod_pubsub.erl
|