From 25603820c1fd7c12bbcaec98a36ad6dd8162b497 Mon Sep 17 00:00:00 2001 From: "berkeviktor@aol.com" Date: Thu, 12 Aug 2010 02:56:10 +0200 Subject: add support for xchat-lua, but don't build by default --- plugins/lua/makefile.mak | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 plugins/lua/makefile.mak (limited to 'plugins/lua/makefile.mak') diff --git a/plugins/lua/makefile.mak b/plugins/lua/makefile.mak new file mode 100644 index 00000000..a63eebe2 --- /dev/null +++ b/plugins/lua/makefile.mak @@ -0,0 +1,19 @@ +include "..\..\src\makeinc.mak" + +xclua.dll: lua.obj lua.def + link $(LDFLAGS) $(LIBS) /dll /out:xclua.dll /LIBPATH:$(LUAPATH)\lib $(LUALIB).lib /def:lua.def lua.obj + dir xclua.dll + +lua.def: + echo EXPORTS > lua.def + echo xchat_plugin_init >> lua.def + echo xchat_plugin_deinit >> lua.def + +lua.obj: lua.c makefile.mak + cl $(CFLAGS) /Dsnprintf=g_snprintf /I.. /I$(LUAPATH)\include /I.. lua.c + +clean: + del *.obj + del *.dll + del *.exp + del *.lib -- cgit 1.4.1