diff options
author | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-08-11 22:52:30 +0200 |
---|---|---|
committer | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-08-11 22:52:30 +0200 |
commit | 6e9bd026943fcca1da88aecc80aaea868b538242 (patch) | |
tree | 36e9ee2f15449c3f144c3c3dc8de5ba4c66623a7 /plugins | |
parent | 06d71ca6a801f1c7d2828d31e0a1add4d61f7cbd (diff) |
enable the XDCC plugin
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/xdcc/makefile.mak | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/plugins/xdcc/makefile.mak b/plugins/xdcc/makefile.mak new file mode 100644 index 00000000..8b879f09 --- /dev/null +++ b/plugins/xdcc/makefile.mak @@ -0,0 +1,19 @@ +include "..\..\src\makeinc.mak" + +xcxdcc.dll: xdcc.obj xdcc.def + link $(LDFLAGS) $(LIBS) /dll /out:xcxdcc.dll /def:xdcc.def xdcc.obj + dir xcewc.dll + +xdcc.def: + echo EXPORTS > xdcc.def + echo xchat_plugin_init >> xdcc.def + echo xchat_plugin_deinit >> xdcc.def + +xdcc.obj: xdcc.c makefile.mak + cl $(CFLAGS) $(GLIB) /I.. xdcc.c + +clean: + del *.obj + del *.dll + del *.exp + del *.lib |