From caa878bc93134a07be311c287dacae2168d97ebc Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Tue, 22 Nov 2011 17:58:00 +0100 Subject: add doat plugin --- plugins/doat/makefile.mak | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/doat/makefile.mak (limited to 'plugins/doat/makefile.mak') diff --git a/plugins/doat/makefile.mak b/plugins/doat/makefile.mak new file mode 100644 index 00000000..960cae27 --- /dev/null +++ b/plugins/doat/makefile.mak @@ -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 -- cgit 1.4.1