2016-09-28 00:29:55 +08:00
|
|
|
|
|
|
|
AC_PREREQ([2.69])
|
|
|
|
AC_INIT([rimage], [0.1])
|
|
|
|
AM_INIT_AUTOMAKE([foreign])
|
|
|
|
AC_CONFIG_SRCDIR([rimage/rimage.c])
|
|
|
|
AC_CONFIG_HEADERS([config.h])
|
|
|
|
|
|
|
|
AC_CANONICAL_HOST
|
|
|
|
|
|
|
|
dnl Initialize maintainer mode
|
|
|
|
AM_MAINTAINER_MODE([enable])
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
|
|
|
|
AC_OUTPUT([
|
|
|
|
Makefile
|
|
|
|
rimage/Makefile
|
|
|
|
rmbox/Makefile
|
2017-07-06 23:52:14 +08:00
|
|
|
topology/Makefile
|
2016-09-28 00:29:55 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
echo "
|
|
|
|
|
|
|
|
prefix: ${prefix}
|
|
|
|
Compiler: ${CC}
|
|
|
|
CFLAGS: ${CFLAGS}
|
2017-07-06 23:52:14 +08:00
|
|
|
"
|