]> gitweb.michael.orlitzky.com - emacs-keys.git/blob - configure.ac
doc/README: simplify symlink instructions
[emacs-keys.git] / configure.ac
1 AC_INIT([emacs-keys], [0.0.2], [michael@orlitzky.com])
2 AM_INIT_AUTOMAKE([-Wall foreign no-dist-gzip dist-xz])
3
4 # --enable-Xmodmap flag, disabled by default, that decides whether or
5 # not we install the Xmodmap file.
6 AC_ARG_ENABLE(
7 [Xmodmap],
8 [ --enable-Xmodmap install the Xmodmap file [[default=no]]],
9 [case "${enableval}" in
10 yes) xmodmap=true ;;
11 no) xmodmap=false ;;
12 *) AC_MSG_ERROR([bad value ${enableval} for --enable-xmodmap]) ;;
13 esac],[xmodmap=false])
14 AM_CONDITIONAL([XMODMAP], [test x$xmodmap = xtrue])
15
16 # List of output files.
17 AC_CONFIG_FILES([Makefile])
18
19 AC_OUTPUT