summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 231f66f119e9af912fede638a2688e5d87d2a959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
AC_INIT([simple-snake], [0.1])
AM_INIT_AUTOMAKE
AC_PROG_CC
AC_CONFIG_FILES([
				 Makefile 
				 src/Makefile
				 ])
AX_WITH_CURSES
if test "x$ax_cv_curses" != xyes; then
	AC_MSG_ERROR([requires an X/Open-compatible Curses library with color])
fi
AC_OUTPUT