summary refs log blame commit diff stats
path: root/plugins/ewc/makefile.mak
blob: a54708decf2d6c3cb7f1ac05739612fb2f7830b7 (plain) (tree)
1
2
3
4
5
6
7
8
9






                                                                         

                                              








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

all: ewc.obj ewc.def
	link $(LDFLAGS) $(LIBS) /dll /out:xcewc.dll /def:ewc.def ewc.obj

ewc.def:
	echo EXPORTS > ewc.def
	echo hexchat_plugin_init >> ewc.def
	echo hexchat_plugin_deinit >> ewc.def

ewc.obj: ewc.c makefile.mak
	cl $(CFLAGS) ewc.c

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