1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | AC_INIT([Greybird ], 0.0, [https://github.com/shimmerproject/Greybird/issues],
[Greybird], [http://shimmerproject.org/our-projects/greybird/])
AM_INIT_AUTOMAKE([1.11 foreign subdir-objects tar-ustar no-dist-gzip dist-xz -Wno-portability])
AM_SILENT_RULES([yes])
AC_PREFIX_DEFAULT(/usr)
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
AC_MSG_RESULT([
Greybird
========
prefix: ${prefix}
])
|