From fa7991495e70918603b071d6cbb4147347ccc13b Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Sun, 27 Nov 2011 07:24:42 +0100 Subject: initial exec --- plugins/exec/makefile.mak | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 plugins/exec/makefile.mak (limited to 'plugins/exec/makefile.mak') diff --git a/plugins/exec/makefile.mak b/plugins/exec/makefile.mak new file mode 100644 index 00000000..d2153faf --- /dev/null +++ b/plugins/exec/makefile.mak @@ -0,0 +1,18 @@ +include "..\..\src\makeinc.mak" + +all: exec.obj exec.def + link $(LDFLAGS) $(LIBS) /dll /out:xcexec.dll /def:exec.def exec.obj + +exec.def: + echo EXPORTS > exec.def + echo xchat_plugin_init >> exec.def + echo xchat_plugin_deinit >> exec.def + +exec.obj: exec.c makefile.mak + cl $(CFLAGS) $(GLIB) /I.. exec.c + +clean: + del *.obj + del *.dll + del *.exp + del *.lib -- cgit 1.4.1