summary refs log tree commit diff stats
path: root/plugins/gtkpref/makefile.mak
diff options
context:
space:
mode:
authorBerke Viktor <berkeviktor@aol.com>2011-08-17 15:11:25 +0200
committerBerke Viktor <berkeviktor@aol.com>2011-08-17 15:11:25 +0200
commitce902a39266619a24af32844816436ca08ef45ac (patch)
treeae2e8bbcd84400a977481e985641f5b5f3e9b0f3 /plugins/gtkpref/makefile.mak
parent32e25c416ff86dd5afe4871ebfbfe03ac7a85654 (diff)
skeleton for gtkpref launcher plugin
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