diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-08-06 21:11:17 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-08-06 21:11:17 +0200 |
| commit | 7db9d8d76ff61c4802ac15559dcea6fa54ff567a (patch) | |
| tree | b67e040c0abeb0ab1fca72754a767dc9ab851461 /configure.ac | |
initial bzr repo at rev 27
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..6d8a72b --- /dev/null +++ b/configure.ac | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | # Initialize Autoconf | ||
| 2 | AC_PREREQ([2.60]) | ||
| 3 | AC_INIT([Gesture Recognition And Instantiation Library], | ||
| 4 | [1.0.3], | ||
| 5 | [], | ||
| 6 | [grail]) | ||
| 7 | AC_CONFIG_SRCDIR([Makefile.am]) | ||
| 8 | AC_CONFIG_HEADERS([config.h]) | ||
| 9 | AC_CONFIG_AUX_DIR([config-aux]) | ||
| 10 | |||
| 11 | # Initialize Automake | ||
| 12 | AM_INIT_AUTOMAKE([foreign dist-bzip2]) | ||
| 13 | AM_MAINTAINER_MODE | ||
| 14 | |||
| 15 | LIB_VERSION=1:0:0 | ||
| 16 | AC_SUBST([LIB_VERSION]) | ||
| 17 | |||
| 18 | # Initialize libtool | ||
| 19 | AC_PROG_LIBTOOL | ||
| 20 | |||
| 21 | # Checks for programs. | ||
| 22 | AC_PROG_CC | ||
| 23 | AC_PROG_INSTALL | ||
| 24 | |||
| 25 | PKG_CHECK_MODULES([MTDEV], [mtdev >= 1.0]) | ||
| 26 | |||
| 27 | AC_CONFIG_FILES([Makefile | ||
| 28 | src/Makefile | ||
| 29 | test/Makefile | ||
| 30 | grail.pc]) | ||
| 31 | AC_OUTPUT | ||
