build system support for mpcinfo

This commit is contained in:
berkeviktor@aol.com
2011-01-25 23:47:56 +01:00
parent d5854a90cb
commit f108310ad2
11 changed files with 32 additions and 440 deletions

View File

@@ -0,0 +1,18 @@
include "..\..\src\makeinc.mak"
all: mpcinfo.obj mpcinfo.def
link $(LDFLAGS) $(LIBS) /dll /out:xcmpcinfo.dll /def:mpcinfo.def mpcinfo.obj
mpcinfo.def:
echo EXPORTS > mpcinfo.def
echo xchat_plugin_init >> mpcinfo.def
# echo xchat_plugin_deinit >> mpcinfo.def
mpcinfo.obj: mpcinfo.c makefile.mak
cl $(CFLAGS) $(GLIB) /I.. mpcinfo.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib