diff options
author | Berke Viktor <berkeviktor@aol.com> | 2011-11-27 07:24:42 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2011-11-27 07:24:42 +0100 |
commit | fa7991495e70918603b071d6cbb4147347ccc13b (patch) | |
tree | 817b7d709d10973eada2070914f8af38b736be36 /plugins/exec/makefile.mak | |
parent | 408487f89bce1d0fdbf54e3c42e01e92f61a1c25 (diff) |
initial exec
Diffstat (limited to 'plugins/exec/makefile.mak')
-rw-r--r-- | plugins/exec/makefile.mak | 18 |
1 files changed, 18 insertions, 0 deletions
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 |