add DNS plugin

This commit is contained in:
Berke Viktor
2012-01-20 05:43:13 +01:00
parent 8f4987a33c
commit bfee90f11c
9 changed files with 405 additions and 0 deletions

22
plugins/dns/makefile.mak Normal file
View File

@@ -0,0 +1,22 @@
include "..\..\src\makeinc.mak"
DNS_OBJECTS = \
dns.obj \
thread.obj
all: $(DNS_OBJECTS) dns.def
link $(LDFLAGS) $(LIBS) /dll /out:xcdns.dll /def:dns.def $(DNS_OBJECTS)
dns.def:
echo EXPORTS > dns.def
echo xchat_plugin_init >> dns.def
echo xchat_plugin_deinit >> dns.def
.c.obj:
$(CC) $(CFLAGS) $(GLIB) /I.. /c $<
clean:
del *.obj
del *.dll
del *.exp
del *.lib