summary refs log tree commit diff stats
path: root/plugins/mpcinfo/makefile.mak
blob: 8c693dbfb2adbf95298e234b1b5efa5e0df768ea (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