summary refs log tree commit diff stats
path: root/plugins/doat/makefile.mak
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-11-22 17:58:00 +0100
committerBerke Viktor <berkeviktor@aol.com>2011-11-22 17:58:00 +0100
commitcaa878bc93134a07be311c287dacae2168d97ebc (patch)
treee98cc11883dc40a91df4023ac3a6cac1ca2ced10 /plugins/doat/makefile.mak
parent99e015c3b3ce49ae13d213ce493504dc7332e19c (diff)
add doat plugin
Diffstat (limited to 'plugins/doat/makefile.mak')
-rw-r--r--plugins/doat/makefile.mak18
1 files changed, 18 insertions, 0 deletions
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