diff options
author | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-08-12 04:23:51 +0200 |
---|---|---|
committer | berkeviktor@aol.com <berkeviktor@aol.com> | 2010-08-12 04:23:51 +0200 |
commit | 355c3b0a4ff1addb7912ad3ed40c72e64de0b0b3 (patch) | |
tree | ef2223d0f9cfd47a81f2c92db16f624155148057 /plugins/lua/makefile.mak | |
parent | 25603820c1fd7c12bbcaec98a36ad6dd8162b497 (diff) |
lua support for x64 as well, and use own lua build
Diffstat (limited to 'plugins/lua/makefile.mak')
-rw-r--r-- | plugins/lua/makefile.mak | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/lua/makefile.mak b/plugins/lua/makefile.mak index a63eebe2..2b9a18ee 100644 --- a/plugins/lua/makefile.mak +++ b/plugins/lua/makefile.mak @@ -1,7 +1,7 @@ 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 + link $(LDFLAGS) $(LIBS) /dll /out:xclua.dll /LIBPATH:$(LUAPATH) $(LUALIB).lib /def:lua.def lua.obj dir xclua.dll lua.def: @@ -10,7 +10,7 @@ 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 + cl $(CFLAGS) /Dsnprintf=g_snprintf /I.. /I$(LUAPATH) /I.. lua.c clean: del *.obj |