• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Initialize Autoconf
2AC_PREREQ([2.60])
3AC_INIT([Multitouch Protocol Translation Library],
4        [1.1.6],
5        [],
6        [mtdev])
7AC_CONFIG_SRCDIR([Makefile.am])
8AC_CONFIG_HEADERS([config.h])
9AC_CONFIG_AUX_DIR([config-aux])
10
11# Initialize Automake
12AM_INIT_AUTOMAKE([foreign dist-bzip2])
13AM_SILENT_RULES([yes])
14
15LIB_VERSION=1:0:0
16AC_SUBST([LIB_VERSION])
17
18# Initialize libtool
19AC_PROG_LIBTOOL
20
21# Checks for programs.
22AC_PROG_CC
23AC_PROG_INSTALL
24
25AC_CONFIG_FILES([Makefile
26                 src/Makefile
27                 test/Makefile
28                 mtdev.pc])
29AC_OUTPUT
30