]> git.draconx.ca Git - dxcommon.git/blob - configure.ac
Fix testsuite VPATH builds.
[dxcommon.git] / configure.ac
1 dnl Copyright © 2015 Nick Bowler
2 dnl
3 dnl License WTFPL2: Do What The Fuck You Want To Public License, version 2.
4 dnl This is free software: you are free to do what the fuck you want to.
5 dnl There is NO WARRANTY, to the extent permitted by law.
6
7 AC_PREREQ([2.68])
8 AC_INIT([dxcommon], [0], [nbowler@draconx.ca])
9 AC_CONFIG_SRCDIR([m4/base.m4])
10
11 AC_PROG_CC
12
13 AM_INIT_AUTOMAKE([-Wall -Wno-portability foreign subdir-objects])
14 AM_SILENT_RULES([yes])
15
16 DX_INIT([.])
17
18 AC_CONFIG_TESTDIR([.])
19 DX_PROG_AUTOTEST
20 AM_CONDITIONAL([HAVE_AUTOTEST], [test x"$dx_cv_autotest_works" = x"yes"])
21
22 AC_CONFIG_FILES([
23   Makefile
24 ])
25 AC_OUTPUT