configure.ac

Wed, 18 Oct 2017 12:03:44 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Oct 2017 12:03:44 +0200
changeset 252
6342cbbd1922
child 253
e19825a1430a
permissions
-rw-r--r--

removes custom make files and adds autoconf support

universe@252 1 AC_INIT([ucx], [0.13], [olaf.wintermann@gmail.com])
universe@252 2 AC_CONFIG_AUX_DIR([build-aux])
universe@252 3 AC_CONFIG_MACRO_DIR([m4])
universe@252 4 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
universe@252 5 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
universe@252 6 LT_INIT
universe@252 7 AC_PROG_CC
universe@252 8 AC_PROG_CC_STDC
universe@252 9 AC_CONFIG_HEADERS([config.h])
universe@252 10 AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
universe@252 11 AC_OUTPUT
universe@252 12

mercurial