initial automake/autoconf configuration

This commit is contained in:
Live session user 2010-07-28 00:44:15 +00:00
commit 3cd11fc3f3
6 changed files with 28 additions and 0 deletions

18
configure.ac Normal file
View file

@ -0,0 +1,18 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65])
AC_INIT(byobu, 2.83, http://bugs.launchpad.net/byobu)
AM_INIT_AUTOMAKE(byobu, 2.83)
# Checks for programs.
# Checks for libraries.
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_OUTPUT(Makefile usr/share/doc/byobu/Makefile usr/lib/byobu/Makefile usr/share/man/man1/Makefile usr/bin/Makefile)