mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-15 18:20:20 +00:00
build system support for mpcinfo
This commit is contained in:
18
plugins/mpcinfo/makefile.mak
Normal file
18
plugins/mpcinfo/makefile.mak
Normal 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
|
||||
Reference in New Issue
Block a user