add wdk changes to named branch
This commit is contained in:
1882
plugins/lua/lua.c
Normal file
1882
plugins/lua/lua.c
Normal file
File diff suppressed because it is too large
Load Diff
20
plugins/lua/makefile.mak
Normal file
20
plugins/lua/makefile.mak
Normal file
@@ -0,0 +1,20 @@
|
||||
include "..\..\src\makeinc.mak"
|
||||
|
||||
DIRENTLIB = ..\..\src\common\dirent.lib
|
||||
|
||||
all: lua.obj lua.def
|
||||
link $(LDFLAGS) $(LIBS) /dll /out:xclua.dll $(LUALIB).lib $(DIRENTLIB) /def:lua.def lua.obj
|
||||
|
||||
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) /I.. /Dsnprintf=g_snprintf lua.c
|
||||
|
||||
clean:
|
||||
del *.obj
|
||||
del *.dll
|
||||
del *.exp
|
||||
del *.lib
|
Reference in New Issue
Block a user