mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-04 08:25:03 -05:00
19 lines
406 B
Makefile
19 lines
406 B
Makefile
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
|