summary refs log tree commit diff stats
path: root/plugins/lua/makefile.mak
blob: 3059660dfb3066229bc85b68ed70697086c8a5ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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