mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-02 16:35:01 -04:00
20 lines
447 B
Makefile
20 lines
447 B
Makefile
include "..\..\src\makeinc.mak"
|
|
|
|
xclua.dll: lua.obj lua.def
|
|
link $(LDFLAGS) $(LIBS) /dll /out:xclua.dll /LIBPATH:$(LUAPATH) $(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) /I.. lua.c
|
|
|
|
clean:
|
|
del *.obj
|
|
del *.dll
|
|
del *.exp
|
|
del *.lib
|