summary refs log tree commit diff stats
path: root/plugins/xsasl/makefile.mak
blob: e1ffd0ecff08f6e09d355ac79f82772b594d766f (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: xsasl.obj xsasl.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcxsasl.dll /def:xsasl.def xsasl.obj

xsasl.def:
	echo EXPORTS > xsasl.def
	echo xchat_plugin_init >> xsasl.def
	echo xchat_plugin_deinit >> xsasl.def

xsasl.obj: xsasl.c makefile.mak
	cl $(CFLAGS) $(GLIB) /I.. xsasl.c

clean:
	del *.obj
	del *.dll
	del *.exp
	del *.lib