aboutsummaryrefslogtreecommitdiff
path: root/src/mod_muc/Makefile.win32
blob: 790032e8856352331f747c8f26d341aa88f91e08 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
include ..\Makefile.inc

OUTDIR = ..
EFLAGS = -I .. -pz ..

OBJS = \
	$(OUTDIR)\mod_muc.beam \
	$(OUTDIR)\mod_muc_room.beam

ALL : $(OBJS)

CLEAN :
	-@erase *.beam

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

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