diff options
author | berkeviktor@aol.com <berkeviktor@aol.com> | 2011-07-28 01:17:44 +0200 |
---|---|---|
committer | berkeviktor@aol.com <berkeviktor@aol.com> | 2011-07-28 01:17:44 +0200 |
commit | 88a9f72d177076566899884e5a2230ae25a1911f (patch) | |
tree | 3b56ef20553dc88f1b0fa419a7bd7a36c874f7e9 /plugins/xdcc/makefile.mak | |
parent | 1fa63a74016444efc1cc68bca26eb011865348d8 (diff) | |
parent | 96caff1fbdf201164339e5e94fde04d8cb7968e8 (diff) |
Merge with default
Diffstat (limited to 'plugins/xdcc/makefile.mak')
-rw-r--r-- | plugins/xdcc/makefile.mak | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/xdcc/makefile.mak b/plugins/xdcc/makefile.mak new file mode 100644 index 00000000..0a12347e --- /dev/null +++ b/plugins/xdcc/makefile.mak @@ -0,0 +1,18 @@ +include "..\..\src\makeinc.mak" + +all: xdcc.obj xdcc.def + link $(LDFLAGS) $(LIBS) /dll /out:xcxdcc.dll /def:xdcc.def xdcc.obj + +xdcc.def: + echo EXPORTS > xdcc.def + echo xchat_plugin_init >> xdcc.def + echo xchat_plugin_deinit >> xdcc.def + +xdcc.obj: xdcc.c makefile.mak + cl $(CFLAGS) $(GLIB) /I.. xdcc.c + +clean: + del *.obj + del *.dll + del *.exp + del *.lib |