1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-08-13 16:53:48 -04:00
hexchat/plugins/xdcc/makefile.mak

19 lines
365 B
Makefile
Raw Normal View History

2010-08-11 16:52:30 -04:00
include "..\..\src\makeinc.mak"
2010-08-24 14:03:18 -04:00
all: xdcc.obj xdcc.def
2010-08-11 16:52:30 -04:00
link $(LDFLAGS) $(LIBS) /dll /out:xcxdcc.dll /def:xdcc.def xdcc.obj
xdcc.def:
echo EXPORTS > xdcc.def
echo xchat_plugin_init >> xdcc.def
echo xchat_plugin_deinit >> xdcc.def
xdcc.obj: xdcc.c makefile.mak
2010-08-24 14:03:18 -04:00
cl $(CFLAGS) $(GLIB) xdcc.c
2010-08-11 16:52:30 -04:00
clean:
del *.obj
del *.dll
del *.exp
del *.lib