summary refs log tree commit diff stats
path: root/plugins/mpcinfo/makefile.mak
blob: 4a8a27638a5c6b8e90a818cff1e72b4c8a16c138 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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