22 lines
458 B
Plaintext
22 lines
458 B
Plaintext
AC_PREREQ([2.65])
|
|
AC_INIT([ebusd], [0.5.0], [ebusd@liwest.at], [ebusd], [https://github.com/yuhu-/ebusd])
|
|
|
|
AC_PROG_CXX
|
|
|
|
AC_CONFIG_AUX_DIR([build])
|
|
AC_CONFIG_SRCDIR([src/ebusd/ebusd.cpp])
|
|
AC_CONFIG_HEADERS([config.h])
|
|
AC_CONFIG_FILES([Makefile
|
|
src/lib/ebus/Makefile
|
|
src/lib/ebus/test/Makefile
|
|
src/lib/utils/Makefile
|
|
src/ebusd/Makefile
|
|
src/ebusctl/Makefile])
|
|
|
|
AM_INIT_AUTOMAKE([1.11 -Wall -Werror foreign])
|
|
|
|
AM_PROG_AR
|
|
AC_PROG_RANLIB
|
|
|
|
AC_OUTPUT
|