diff options
author | Alexey Shchepin <alexey@process-one.net> | 2003-07-13 09:00:01 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2003-07-13 09:00:01 +0000 |
commit | 3131c081550e7eefdfddddb5939145a892863a44 (patch) | |
tree | 10401d00f2ebaaa6592e2c1e53cfca95a56a07ac /src/mod_muc | |
parent | * src/mod_pubsub/mod_pubsub.erl: Added suport for meta-node (diff) |
* doc/guide.tex: Updated (thanks to Sergei Golovan)
* src/expat_erl.c: Added #ifdef for WIN32 (thanks to Sergei
Golovan)
* src/mod_irc/iconv_erl.c: Likewise
* src/configure.erl: Defines ERLANG_DIR variable (thanks to Sergei
Golovan)
* **/Makefile: Use ERLANG_DIR (thanks to Sergei Golovan)
* **/Makefile.win32: Makefiles for windows build (thanks to Sergei
Golovan)
* src/configure.bat: Configuration script for windows (thanks to
Sergei Golovan)
SVN Revision: 123
Diffstat (limited to 'src/mod_muc')
-rw-r--r-- | src/mod_muc/Makefile | 2 | ||||
-rw-r--r-- | src/mod_muc/Makefile.win32 | 20 |
2 files changed, 21 insertions, 1 deletions
diff --git a/src/mod_muc/Makefile b/src/mod_muc/Makefile index b5fb3bf3d..924f5353a 100644 --- a/src/mod_muc/Makefile +++ b/src/mod_muc/Makefile @@ -2,7 +2,7 @@ include ../Makefile.inc -INCLUDES = -I/usr/lib/erlang/usr/include \ +INCLUDES = -I$(ERLANG_DIR)/usr/include \ -I$(EI_DIR)/include \ -I/usr/local/include diff --git a/src/mod_muc/Makefile.win32 b/src/mod_muc/Makefile.win32 new file mode 100644 index 000000000..790032e88 --- /dev/null +++ b/src/mod_muc/Makefile.win32 @@ -0,0 +1,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 |