blob: 77670bf22858f1e36547ef643b604561dac5615e (
plain) (
blame)
1
2
3
|
or@aol.com> 2010-04-02 07:29:16 +0200
move additions to own repo, so that patch contains only modifications' href='/git-repos/torxchat.git/commit/plugins/ewc/makefile.mak?h=feature/tls-srp&id=c7ec88c88adb4f15b154ad125977d9c2c4ae4956'>c7ec88c8 ^
|
|
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 xchat_plugin_init >> ewc.def
echo xchat_plugin_deinit >> ewc.def
ewc.obj: ewc.c makefile.mak
cl $(CFLAGS) ewc.c
clean:
del *.obj
del *.dll
del *.exp
del *.lib
|