initialize project
authorU. Artie Eoff <ullysses.a.eoff@intel.com>
Wed, 18 Apr 2012 01:10:14 +0000 (18:10 -0700)
committerU. Artie Eoff <ullysses.a.eoff@intel.com>
Wed, 18 Apr 2012 01:10:14 +0000 (18:10 -0700)
Signed-off-by: U. Artie Eoff <ullysses.a.eoff@intel.com>
Makefile.am [new file with mode: 0644]
autogen.sh [new file with mode: 0755]
configure.ac [new file with mode: 0644]
src/Makefile.am [new file with mode: 0644]

diff --git a/Makefile.am b/Makefile.am
new file mode 100644 (file)
index 0000000..3a7ce7e
--- /dev/null
@@ -0,0 +1,3 @@
+SUBDIRS = src
+
+ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
diff --git a/autogen.sh b/autogen.sh
new file mode 100755 (executable)
index 0000000..916169a
--- /dev/null
@@ -0,0 +1,9 @@
+#! /bin/sh
+
+test -n "$srcdir" || srcdir=`dirname "$0"`
+test -n "$srcdir" || srcdir=.
+(
+  cd "$srcdir" &&
+  autoreconf --force -v --install
+) || exit
+test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..977ffce
--- /dev/null
@@ -0,0 +1,24 @@
+AC_PREREQ([2.64])
+
+AC_INIT([wayland-test],
+        [0.89],
+        [https://bugs.freedesktop.org/enter_bug.cgi?product=wayland],
+        [wayland-test],
+        [http://wayland.freedesktop.org/])
+
+AM_INIT_AUTOMAKE([1.11 foreign no-dist-gzip dist-xz])
+
+AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_MACRO_DIR([m4])
+
+# check for compilers
+AC_PROG_CXX
+AC_PROG_CC
+
+# Initialize libtool
+LT_PREREQ([2.2])
+LT_INIT
+
+AC_CONFIG_FILES([Makefile
+                src/Makefile])
+AC_OUTPUT
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644 (file)
index 0000000..e69de29