summary refs log tree commit diff stats
path: root/plugins/lua/makefile.mak
diff options
context:
space:
mode:
authorberkeviktor@aol.com <berkeviktor@aol.com>2010-08-24 20:03:18 +0200
committerberkeviktor@aol.com <berkeviktor@aol.com>2010-08-24 20:03:18 +0200
commitcbcf58aba6497db777fe41d0b9651d0b905c9605 (patch)
tree785a4061a6c7deca097b8568a7546a529740a65f /plugins/lua/makefile.mak
parente0e70fccd444000c74ee505d790fbfb64e1ed1c2 (diff)
huge cleanup on build system
Diffstat (limited to 'plugins/lua/makefile.mak')
-rw-r--r--plugins/lua/makefile.mak5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/lua/makefile.mak b/plugins/lua/makefile.mak
index 3059660d..e1ef8822 100644
--- a/plugins/lua/makefile.mak
+++ b/plugins/lua/makefile.mak
@@ -1,8 +1,7 @@
 include "..\..\src\makeinc.mak"

 

-xclua.dll: lua.obj lua.def

+all: 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

@@ -10,7 +9,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$(LUAPATH)\include lua.c

 

 clean:

 	del *.obj