about summary refs log tree commit diff
path: root/src/ipaddr/Makefile.am
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2008-02-26 23:50:35 +0100
committerFlorian Westphal <fw@strlen.de>2008-02-26 23:50:35 +0100
commitfeb31e4200b42e0a5e9fb9637fa5f03c7ec05fcb (patch)
treeb572467ece1a378bc5939b7094c46f2e97fd1963 /src/ipaddr/Makefile.am
parentc31ad221a6cc48b709af056181d8d0be09898910 (diff)
downloadngircd-feb31e4200b42e0a5e9fb9637fa5f03c7ec05fcb.tar.gz
ngircd-feb31e4200b42e0a5e9fb9637fa5f03c7ec05fcb.zip
IPv6 support.
all references to struct sockaddr/in_addr have been
removed from src/ngircd.
libngipaddr (in src/ipaddr/) hides all the gory details.
See src/ipaddr/ng_ipaddr.h for API description.
Diffstat (limited to 'src/ipaddr/Makefile.am')
-rw-r--r--src/ipaddr/Makefile.am14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/ipaddr/Makefile.am b/src/ipaddr/Makefile.am
new file mode 100644
index 00000000..fcbb7cfd
--- /dev/null
+++ b/src/ipaddr/Makefile.am
@@ -0,0 +1,14 @@
+AUTOMAKE_OPTIONS = ansi2knr
+
+INCLUDES = -I$(srcdir)/../portab
+
+noinst_LIBRARIES = libngipaddr.a
+
+libngipaddr_a_SOURCES = ng_ipaddr.c
+
+noinst_HEADERS = ng_ipaddr.h
+
+maintainer-clean-local:
+	rm -f Makefile Makefile.in
+
+# -eof-