]> git.draconx.ca Git - dxcommon.git/blobdiff - configure.ac
Implement initial test suite.
[dxcommon.git] / configure.ac
diff --git a/configure.ac b/configure.ac
new file mode 100644 (file)
index 0000000..abfccf7
--- /dev/null
@@ -0,0 +1,25 @@
+dnl Copyright © 2015 Nick Bowler
+dnl
+dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2.
+dnl This is free software: you are free to do what the fuck you want to.
+dnl There is NO WARRANTY, to the extent permitted by law.
+
+AC_PREREQ([2.68])
+AC_INIT([dxcommon], [0], [nbowler@draconx.ca])
+AC_CONFIG_SRCDIR([m4/base.m4])
+
+AC_PROG_CC
+
+AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
+AM_SILENT_RULES([yes])
+
+DX_INIT([.])
+
+AC_CONFIG_TESTDIR([.])
+DX_PROG_AUTOTEST
+AM_CONDITIONAL([HAVE_AUTOTEST], [test x"$dx_cv_autotest_works" = x"yes"])
+
+AC_CONFIG_FILES([
+  Makefile
+])
+AC_OUTPUT