summary refs log blame commit diff stats
path: root/plugins/xdcc/makefile.mak
blob: 38a0735f034462763d9bab6f63ba887a2138ca9d (plain) (tree)
1
2
3
4
5



                                                                            
                       













                                             
include "..\..\src\makeinc.mak"

xcxdcc.dll: xdcc.obj xdcc.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcxdcc.dll /def:xdcc.def xdcc.obj
	dir xcxdcc.dll

xdcc.def:
	echo EXPORTS > xdcc.def
	echo xchat_plugin_init >> xdcc.def
	echo xchat_plugin_deinit >> xdcc.def

xdcc.obj: xdcc.c makefile.mak
	cl $(CFLAGS) $(GLIB) /I.. xdcc.c

clean:
	del *.obj
	del *.dll
	del *.exp
	del *.lib