aboutsummaryrefslogtreecommitdiff
path: root/m4/ac_espik_debug.m4
blob: 1ebe69adf3f887bf43cacc85fc152200c925fbf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
dnl Debug mode
AC_DEFUN([AC_ESPIK_DEBUG]),
[
  AC_ARG_ENABLE(
    [debug],
    AC_HELP_STRING(
      [--enable-debug], [Enable debug mode (default=yes)]),
    [if test "$enable_debug" = "yes" ; then
       DEBUG_CFLAGS="-g -D_ESPIK_DEBUG_"
     else
       DEBUG_LDFLAGS="-s"
     fi], [debug="yes"])

  AC_SUBST(DEBUG_CFLAGS)
  AC_SUBST(DEBUG_LDFLAGS)
])