diff options
author | Berke Viktor <berkeviktor@aol.com> | 2012-01-10 04:00:20 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2012-01-10 04:00:20 +0100 |
commit | 66d8b0ad7b849ed743d3c3b4199fd05ece3891bb (patch) | |
tree | e5ca2b3e390538f01a1cab664f1cc3332ab1d6f7 /plugins/xsasl/makefile.mak | |
parent | 8c9d1aa31e0963782b3859386de538f33c5de461 (diff) |
initial XSASL plugin based on cap_sasl
Diffstat (limited to 'plugins/xsasl/makefile.mak')
-rw-r--r-- | plugins/xsasl/makefile.mak | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/xsasl/makefile.mak b/plugins/xsasl/makefile.mak new file mode 100644 index 00000000..e1ffd0ec --- /dev/null +++ b/plugins/xsasl/makefile.mak @@ -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 |