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

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

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

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