]> git.karo-electronics.de Git - mdnsd.git/commitdiff
Added autotools support
authorOle Reinhardt <ole.reinhardt@kernelconcepts.de>
Thu, 20 Mar 2014 13:21:24 +0000 (14:21 +0100)
committerOle Reinhardt <ole.reinhardt@kernelconcepts.de>
Thu, 20 Mar 2014 13:21:24 +0000 (14:21 +0100)
AUTHORS [new file with mode: 0644]
COPYING [new file with mode: 0644]
ChangeLog [new file with mode: 0644]
Makefile.am [new file with mode: 0644]
NEWS [new file with mode: 0644]
autogen.sh [new file with mode: 0755]
configure.ac [new file with mode: 0644]

diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..c579502
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,2 @@
+Jer           <jer@jabber.org>
+Ole Reinhardt <ole.reinhardt@kernelconcepts.de>
diff --git a/COPYING b/COPYING
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/ChangeLog b/ChangeLog
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..3aee47b
--- /dev/null
@@ -0,0 +1,16 @@
+ACLOCAL_AMFLAGS = -I m4
+
+bin_PROGRAMS = mhttp mquery
+
+mhttp_SOURCES = mhttp.c mdnsd.c rfc1035.c dns_sd_txt.c shash.c
+mhttp_CFLAGS = -D_GNU_SOURCE -Wall -Wextra -Wno-pointer-sign -g
+mhttp_LDADD = 
+
+mquery_SOURCES = mquery.c mdnsd.c rfc1035.c dns_sd_txt.c shash.c
+mquery_CFLAGS = -D_GNU_SOURCE -Wall -Wextra -Wno-pointer-sign -g
+mquery_LDADD = 
+
+#EXTRA_DIST = \
+#      AUTHORS                 \
+#      COPYING                 \
+#      README
diff --git a/NEWS b/NEWS
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..8d7b4f3
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+set -x
+autoreconf -fis
+#aclocal
+#autoconf
+#libtoolize
+#automake --add-missing --foreign
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..3e86c9a
--- /dev/null
@@ -0,0 +1,13 @@
+AC_CONFIG_MACRO_DIR([m4])
+
+AC_INIT(Makefile.am)
+AM_INIT_AUTOMAKE(mdsnd, 0.01)
+
+AC_PROG_CPP
+AC_PROG_INSTALL
+AC_PROG_LIBTOOL
+AM_PROG_CC_C_O
+
+AM_MAINTAINER_MODE
+
+AC_OUTPUT([ Makefile ])