summary refs log tree commit diff stats
path: root/win32/xchat-wdk-x86.skel.iss
AgeCommit message (Expand)Author
2012-01-10installer support for xsaslBerke Viktor
2011-12-11restructuringBerke Viktor
gt; 2011-02-28 18:59:32 +0100 add wdk changes to named branch' href='/git-repos/torxchat.git/commit/plugins/checksum/makefile.mak?h=feature/tls-srp&id=d03d6e606b40157d910ddf99ab018156abeb8ef0'>d03d6e60 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                                                         
include "..\..\src\makeinc.mak"

all: checksum.obj checksum.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcchecksum.dll /def:checksum.def checksum.obj 

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

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

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