summary refs log tree commit diff stats
path: root/plugins/fishlim/makefile.mak
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-11-24 23:17:31 +0100
committerBerke Viktor <berkeviktor@aol.com>2011-11-24 23:17:31 +0100
commit1a96ca3edd2b3b503a00180a8d1bb225cac2059b (patch)
tree3d06014fb0c47873b2260eef2c4a44bde25d2b8d /plugins/fishlim/makefile.mak
parent895e3b6b40c8a50231e775e3ccca1e4437946eb8 (diff)
add fishlim plugin
Diffstat (limited to 'plugins/fishlim/makefile.mak')
-rw-r--r--plugins/fishlim/makefile.mak30
1 files changed, 30 insertions, 0 deletions
diff --git a/plugins/fishlim/makefile.mak b/plugins/fishlim/makefile.mak
new file mode 100644
index 00000000..decf9bb4
--- /dev/null
+++ b/plugins/fishlim/makefile.mak
@@ -0,0 +1,30 @@
+include "..\..\src\makeinc.mak"

+

+TARGET = xcfishlim.dll

+

+CFLAGS = $(CFLAGS)

+

+FISHLIM_OBJECTS = \

+fish.obj \

+irc.obj \

+keystore.obj \

+misc.obj \

+xchat_plugin.obj

+

+all: $(FISHLIM_OBJECTS) fishlim.def

+	link $(LDFLAGS) $(LIBS) /dll /out:xcfishlim.dll /def:fishlim.def $(FISHLIM_OBJECTS)

+

+fishlim.def:

+	echo EXPORTS > fishlim.def

+	echo xchat_plugin_init >> fishlim.def

+	echo xchat_plugin_deinit >> fishlim.def

+	echo xchat_plugin_get_info >> fishlim.def

+

+.c.obj:

+	$(CC) $(CFLAGS) $(GLIB) /I.. /c $<

+

+clean:

+	del *.obj

+	del *.dll

+	del *.exp

+	del *.lib