diff options
author | Berke Viktor <berkeviktor@aol.com> | 2012-01-20 05:43:13 +0100 |
---|---|---|
committer | Berke Viktor <berkeviktor@aol.com> | 2012-01-20 05:43:13 +0100 |
commit | bfee90f11c9766808a0c7decccc3289d4764019f (patch) | |
tree | ebdb69373da6658e5af2e49fb2acebc35e0b748a /plugins/dns/makefile.mak | |
parent | 8f4987a33c7042c3ddb72619bbd1f6f787ee751d (diff) |
add DNS plugin
Diffstat (limited to 'plugins/dns/makefile.mak')
-rw-r--r-- | plugins/dns/makefile.mak | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/dns/makefile.mak b/plugins/dns/makefile.mak new file mode 100644 index 00000000..384e6be1 --- /dev/null +++ b/plugins/dns/makefile.mak @@ -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 |