summary refs log tree commit diff stats
path: root/plugins/xdcc
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/xdcc')
-rw-r--r--plugins/xdcc/makefile.mak19
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