add doat plugin

This commit is contained in:
Berke Viktor
2011-11-22 17:58:00 +01:00
parent 99e015c3b3
commit caa878bc93
5 changed files with 104 additions and 0 deletions

18
plugins/doat/makefile.mak Normal file
View File

@@ -0,0 +1,18 @@
include "..\..\src\makeinc.mak"
all: doat.obj doat.def
link $(LDFLAGS) $(LIBS) /dll /out:xcdoat.dll /def:doat.def doat.obj
doat.def:
echo EXPORTS > doat.def
echo xchat_plugin_init >> doat.def
echo xchat_plugin_deinit >> doat.def
doat.obj: doat.c makefile.mak
cl $(CFLAGS) $(GLIB) /I.. doat.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib