Skip to content
Snippets Groups Projects
configure.in 153 B
Newer Older
AC_INIT()

AC_CANONICAL_HOST

EXTRA_CFLAGS=-O3

if test "$enable_debugging" = yes; then 
	EXTRA_CFLAGS=-g
fi

AC_SUBST(EXTRA_CFLAGS)
AC_OUTPUT(Makefile)