diff options
author | Alexey Shchepin <alexey@process-one.net> | 2005-05-15 23:03:25 +0000 |
---|---|---|
committer | Alexey Shchepin <alexey@process-one.net> | 2005-05-15 23:03:25 +0000 |
commit | d7a6fcb7124928247d805a1fa0eab7a244d026ce (patch) | |
tree | 84b3d74618107b9f061cfce33e46a42d89a149c6 /src/odbc | |
parent | * src/mod_muc/mod_muc_room.erl: Fixed bug with storing (diff) |
* src/win32/ejabberd.cfg: Updated (thanks to Sergei Golovan)
* src/odbc/Makefile.win32: Added (thanks to Sergei Golovan)
* src/Makefile.win32: Updated (thanks to Sergei Golovan)
* src/jd2ejd.erl: Fixed private xml setting
* src/mod_last.erl: Bugfix
* src/mod_last_odbc.erl: Likewise
* src/mod_pubsub/mod_pubsub.erl: Fixed service stopping
SVN Revision: 347
Diffstat (limited to 'src/odbc')
-rw-r--r-- | src/odbc/Makefile.win32 | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/odbc/Makefile.win32 b/src/odbc/Makefile.win32 new file mode 100644 index 00000000..07281356 --- /dev/null +++ b/src/odbc/Makefile.win32 @@ -0,0 +1,20 @@ + +include ..\Makefile.inc + +OUTDIR = .. +EFLAGS = -I .. -pz .. + +OBJS = \ + $(OUTDIR)\ejabberd_odbc.beam \ + $(OUTDIR)\ejabberd_odbc_sup.beam + +ALL : $(OBJS) + +CLEAN : + -@erase $(OBJS) + +$(OUTDIR)\ejabberd_odbc.beam : ejabberd_odbc.erl + erlc -W $(EFLAGS) -o $(OUTDIR) ejabberd_odbc.erl + +$(OUTDIR)\ejabberd_odbc_sup.beam : ejabberd_odbc_sup.erl + erlc -W $(EFLAGS) -o $(OUTDIR) ejabberd_odbc_sup.erl |