summary refs log blame commit diff stats
path: root/plugins/xdcc/makefile.mak
blob: 8b879f0977e725361b8d321a59ed2e42022a290f (plain) (tree)


















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

xcxdcc.dll: xdcc.obj xdcc.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcxdcc.dll /def:xdcc.def xdcc.obj
	dir xcewc.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