1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-14 13:25:13 -05:00
hexchat/plugins/lua/makefile.mak

19 lines
387 B
Makefile
Raw Normal View History

include "..\..\src\makeinc.mak"
2010-08-24 14:03:18 -04:00
all: lua.obj lua.def
link $(LDFLAGS) $(LIBS) /dll /out:xclua.dll $(LUALIB).lib /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