summaryrefslogtreecommitdiff
path: root/ngircd/src/ipaddr/Makefile.ng
diff options
context:
space:
mode:
Diffstat (limited to 'ngircd/src/ipaddr/Makefile.ng')
-rw-r--r--ngircd/src/ipaddr/Makefile.ng21
1 files changed, 21 insertions, 0 deletions
diff --git a/ngircd/src/ipaddr/Makefile.ng b/ngircd/src/ipaddr/Makefile.ng
new file mode 100644
index 0000000..ecfce29
--- /dev/null
+++ b/ngircd/src/ipaddr/Makefile.ng
@@ -0,0 +1,21 @@
+#
+# ipaddr/Makefile.am
+# (c) 2008 Florian Westphal <fw@strlen.de>, public domain.
+#
+
+__ng_Makefile_am_template__
+
+EXTRA_DIST = Makefile.ng
+
+AM_CPPFLAGS = -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 Makefile.am
+
+# -eof-