Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile.win32 « mod_muc « src - github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27b81925ee47b587f87a3a85e9ff94fc07b4cd0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

include ..\Makefile.inc

EFLAGS = -I .. -pz ..

OUTDIR = ..
BEAMS = ..\mod_muc.beam ..\mod_muc_odbc.beam ..\mod_muc_log.beam ..\mod_muc_room.beam

ALL : $(BEAMS)

CLEAN :
	-@erase $(BEAMS)

$(OUTDIR)\mod_muc.beam : mod_muc.erl
	erlc -W $(EFLAGS) -o $(OUTDIR) mod_muc.erl

$(OUTDIR)\mod_muc_odbc.beam : mod_muc_odbc.erl
	erlc -W $(EFLAGS) -o $(OUTDIR) mod_muc_odbc.erl

$(OUTDIR)\mod_muc_log.beam : mod_muc_log.erl
	erlc -W $(EFLAGS) -o $(OUTDIR) mod_muc_log.erl

$(OUTDIR)\mod_muc_room.beam : mod_muc_room.erl
	erlc -W $(EFLAGS) -o $(OUTDIR) mod_muc_room.erl