summary refs log tree commit diff stats
path: root/plugins/gtkpref/makefile.mak
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gtkpref/makefile.mak')
-rw-r--r--plugins/gtkpref/makefile.mak18
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/gtkpref/makefile.mak b/plugins/gtkpref/makefile.mak
new file mode 100644
index 00000000..e2292365
--- /dev/null
+++ b/plugins/gtkpref/makefile.mak
@@ -0,0 +1,18 @@
+include "..\..\src\makeinc.mak"

+

+all: gtkpref.obj gtkpref.def

+	link $(LDFLAGS) $(LIBS) /dll /out:xcgtkpref.dll /def:gtkpref.def gtkpref.obj

+

+gtkpref.def:

+	echo EXPORTS > gtkpref.def

+	echo xchat_plugin_init >> gtkpref.def

+	echo xchat_plugin_deinit >> gtkpref.def

+

+gtkpref.obj: gtkpref.c makefile.mak

+	cl $(CFLAGS) $(GLIB) /I.. gtkpref.c

+

+clean:

+	del *.obj

+	del *.dll

+	del *.exp

+	del *.lib