aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
blob: 17726712ef2a6ea5a92812c61edea0dcbd2fc82d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AC_INIT([blc], [0.1.0])
AM_INIT_AUTOMAKE([foreign subdir-objects -Wall])

AC_PROG_CXX
AC_PROG_INSTALL

AC_CONFIG_HEADERS([config.h])

AC_CONFIG_FILES([
 Makefile
 src/Makefile
])

# Debug flag
AC_ARG_ENABLE([debug],
  AS_HELP_STRING([--enable-debug], [Build with debug flags]),
  [debug=$enableval],
  [debug=no])

AM_CONDITIONAL([DEBUG], [test "$debug" = "yes"])

AC_OUTPUT