tio/configure.ac
Martin Lund 1eca1f7dc6 Enabled .tar.gz distribution support
Github does not allow releases including .tar.xz anymore so we have to
also enable old school .tar.gz.
2015-04-18 12:07:14 +03:00

12 lines
337 B
Text

AC_PREREQ([2.68])
AC_INIT([Go TTY], [1.2], [], [gotty], [http://gotty.io])
AC_CONFIG_HEADERS([src/include/config.h])
AM_INIT_AUTOMAKE([1.11 foreign dist-xz -Wall -Werror])
AM_SILENT_RULES([yes])
AC_PROG_CC
AC_LANG([C])
AC_PROG_INSTALL
AC_CONFIG_FILES([Makefile])
AC_CONFIG_FILES([src/Makefile])
AC_CONFIG_FILES([man/Makefile])
AC_OUTPUT