summary refs log tree commit diff stats
path: root/plugins/winsys/makefile.mak
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-11-27 19:38:37 +0100
committerBerke Viktor <berkeviktor@aol.com>2011-11-27 19:38:37 +0100
commiteaad8edbee8b7110ae7a885421db4df97cc244cc (patch)
tree64168a7e078ca4990202abcf164a76b3277ee1ce /plugins/winsys/makefile.mak
parent8b1a157ee3a25e208b3c9ca7b3005cb0784c5f8e (diff)
initial version of winsys sysinfo plugin
Diffstat (limited to 'plugins/winsys/makefile.mak')
-rw-r--r--plugins/winsys/makefile.mak18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/winsys/makefile.mak b/plugins/winsys/makefile.mak
new file mode 100644
index 00000000..5d125ab7
--- /dev/null
+++ b/plugins/winsys/makefile.mak
@@ -0,0 +1,18 @@
+include "..\..\src\makeinc.mak"

+

+all: winsys.obj winsys.def

+	link $(LDFLAGS) $(LIBS) wbemuuid.lib /dll /out:xcwinsys.dll /def:winsys.def winsys.obj

+

+winsys.def:

+	echo EXPORTS > winsys.def

+	echo xchat_plugin_init >> winsys.def

+	echo xchat_plugin_deinit >> winsys.def

+

+winsys.obj: winsys.c makefile.mak

+	cl $(CFLAGS) $(GLIB) /I.. winsys.c

+

+clean:

+	del *.obj

+	del *.dll

+	del *.exp

+	del *.lib