initial exec

This commit is contained in:
Berke Viktor
2011-11-27 07:24:42 +01:00
parent 408487f89b
commit fa7991495e
2 changed files with 215 additions and 0 deletions

18
plugins/exec/makefile.mak Normal file
View File

@@ -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