diff options
author | Berke Viktor <berkeviktor@aol.com> | 2012-01-18 09:25:05 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2012-01-18 09:25:05 +0100 |
commit | 569cb3dbbfb854038f9ebcdb5a5374e1de6ec9c0 (patch) | |
tree | 5f072d7ce5b8280ec2f3a72fd2fb719f4c0b5a35 /plugins/nonbmp/makefile.mak | |
parent | ffdd106588854aa66cdad1ad4bbac980b96df967 (diff) |
add Non-BMP plugin against GTK+ exploits
Diffstat (limited to 'plugins/nonbmp/makefile.mak')
-rw-r--r-- | plugins/nonbmp/makefile.mak | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/plugins/nonbmp/makefile.mak b/plugins/nonbmp/makefile.mak new file mode 100644 index 00000000..1c28610d --- /dev/null +++ b/plugins/nonbmp/makefile.mak @@ -0,0 +1,18 @@ +include "..\..\src\makeinc.mak" + +all: nonbmp.obj nonbmp.def + link $(LDFLAGS) $(LIBS) /dll /out:xcnonbmp.dll /def:nonbmp.def nonbmp.obj + +nonbmp.def: + echo EXPORTS > nonbmp.def + echo xchat_plugin_init >> nonbmp.def + echo xchat_plugin_deinit >> nonbmp.def + +nonbmp.obj: nonbmp.c makefile.mak + cl $(CFLAGS) $(GLIB) /I.. nonbmp.c + +clean: + del *.obj + del *.dll + del *.exp + del *.lib |