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

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

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

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