configure.ac

Wed, 18 Oct 2017 19:10:29 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 18 Oct 2017 19:10:29 +0200
changeset 254
c45c385ac578
parent 253
e19825a1430a
child 255
92c22c0fa8e8
permissions
-rw-r--r--

fixes include path and non-cpp build for test program

universe@253 1 # the package version must match the macros in ucx.h
universe@253 2 # if you change the package version, don't forget to adjust the library version
universe@253 3 AC_INIT([ucx], [0.14], [olaf.wintermann@gmail.com])
universe@252 4 AC_CONFIG_AUX_DIR([build-aux])
universe@252 5 AC_CONFIG_MACRO_DIR([m4])
universe@252 6 AM_INIT_AUTOMAKE([foreign -Wall -Werror])
universe@252 7 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
universe@252 8 LT_INIT
universe@252 9 AC_PROG_CC
universe@252 10 AC_PROG_CC_STDC
universe@252 11 AC_CONFIG_HEADERS([config.h])
universe@252 12 AC_CONFIG_FILES([Makefile src/Makefile test/Makefile])
universe@252 13 AC_OUTPUT
universe@252 14

mercurial