mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-24 16:23:40 +01:00
80b7abd8c8
all erl files found in the directory, so it isn't needed to provide an explicit list of target files * src/eldap/Makefile.win32: Likewise * src/mod_irc/Makefile.win32: Likewise * src/mod_muc/Makefile.win32: Likewise * src/mod_proxy65/Makefile.win32: Likewise * src/mod_pubsub/Makefile.win32: Likewise * src/odbc/Makefile.win32: Likewise * src/stringprep/Makefile.win32: Likewise * src/tls/Makefile.win32: Likewise * src/web/Makefile.win32: Likewise SVN Revision: 1076
29 lines
726 B
Makefile
29 lines
726 B
Makefile
|
|
include ..\Makefile.inc
|
|
|
|
EFLAGS = -I .. -pz ..
|
|
|
|
OUTDIR = ..
|
|
SOURCES = $(wildcard *.erl)
|
|
BEAMS = $(addprefix $(OUTDIR)/,$(SOURCES:.erl=.beam))
|
|
|
|
ALL : $(BEAMS)
|
|
|
|
CLEAN :
|
|
-@erase $(BEAMS)
|
|
|
|
$(OUTDIR)\mod_proxy65.beam : mod_proxy65.erl
|
|
erlc -W $(EFLAGS) -o $(OUTDIR) mod_proxy65.erl
|
|
|
|
$(OUTDIR)\mod_proxy65_service.beam : mod_proxy65_service.erl
|
|
erlc -W $(EFLAGS) -o $(OUTDIR) mod_proxy65_service.erl
|
|
|
|
$(OUTDIR)\mod_proxy65_sm.beam : mod_proxy65_sm.erl
|
|
erlc -W $(EFLAGS) -o $(OUTDIR) mod_mod_proxy65_sm.erl
|
|
|
|
$(OUTDIR)\mod_proxy65_stream.beam : mod_proxy65_stream.erl
|
|
erlc -W $(EFLAGS) -o $(OUTDIR) mod_proxy65_stream.erl
|
|
|
|
$(OUTDIR)\mod_proxy65_lib.beam : mod_proxy65_lib.erl
|
|
erlc -W $(EFLAGS) -o $(OUTDIR) mod_proxy65_lib.erl
|