initial XSASL plugin based on cap_sasl

This commit is contained in:
Berke Viktor
2012-01-10 04:00:20 +01:00
parent 8c9d1aa31e
commit 66d8b0ad7b
5 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
include "..\..\src\makeinc.mak"
all: xsasl.obj xsasl.def
link $(LDFLAGS) $(LIBS) /dll /out:xcxsasl.dll /def:xsasl.def xsasl.obj
xsasl.def:
echo EXPORTS > xsasl.def
echo xchat_plugin_init >> xsasl.def
echo xchat_plugin_deinit >> xsasl.def
xsasl.obj: xsasl.c makefile.mak
cl $(CFLAGS) $(GLIB) /I.. xsasl.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib