Initial import

This commit is contained in:
Martin Lund 2014-09-27 11:35:17 +02:00
commit a14d14d75b
19 changed files with 1604 additions and 0 deletions

11
configure.ac Normal file
View file

@ -0,0 +1,11 @@
AC_PREREQ([2.68])
AC_INIT([Go TTY], [0.1], [], [gotty], [http://github.com/lundmar/gotty])
AC_CONFIG_HEADERS([src/include/config.h])
AM_INIT_AUTOMAKE([1.11 foreign dist-xz no-dist-gzip -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_OUTPUT