diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-11-27 19:38:37 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-11-27 19:38:37 +0100 |
commit | eaad8edbee8b7110ae7a885421db4df97cc244cc (patch) | |
tree | 64168a7e078ca4990202abcf164a76b3277ee1ce /plugins/winsys/makefile.mak | |
parent | 8b1a157ee3a25e208b3c9ca7b3005cb0784c5f8e (diff) |
initial version of winsys sysinfo plugin
Diffstat (limited to 'plugins/winsys/makefile.mak')
-rw-r--r-- | plugins/winsys/makefile.mak | 18 |
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 |