about summary refs log tree commit diff
path: root/src/ipaddr
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipaddr')
-rw-r--r--src/ipaddr/.gitignore1
-rw-r--r--src/ipaddr/Makefile.ng (renamed from src/ipaddr/Makefile.am)8
2 files changed, 6 insertions, 3 deletions
diff --git a/src/ipaddr/.gitignore b/src/ipaddr/.gitignore
new file mode 100644
index 00000000..08a6d725
--- /dev/null
+++ b/src/ipaddr/.gitignore
@@ -0,0 +1 @@
+Makefile.am
diff --git a/src/ipaddr/Makefile.am b/src/ipaddr/Makefile.ng
index 6ce299f2..ecfce295 100644
--- a/src/ipaddr/Makefile.am
+++ b/src/ipaddr/Makefile.ng
@@ -3,9 +3,11 @@
 # (c) 2008 Florian Westphal <fw@strlen.de>, public domain.
 #
 
-AUTOMAKE_OPTIONS = ../portab/ansi2knr
+__ng_Makefile_am_template__
 
-INCLUDES = -I$(srcdir)/../portab
+EXTRA_DIST = Makefile.ng
+
+AM_CPPFLAGS = -I$(srcdir)/../portab
 
 noinst_LIBRARIES = libngipaddr.a
 
@@ -14,6 +16,6 @@ libngipaddr_a_SOURCES = ng_ipaddr.c
 noinst_HEADERS = ng_ipaddr.h
 
 maintainer-clean-local:
-	rm -f Makefile Makefile.in
+	rm -f Makefile Makefile.in Makefile.am
 
 # -eof-