Re: Error in automake with AM_YFLAGS
For some reason this now works: AM_YFLAGS = -d AM_LFLAGS = -o$(LEX_OUTPUT_ROOT).c -CFa if DEBUG_PARSER AM_YFLAGS += --debug endif if DEBUG_LEXER AM_LFLAGS += -d endif Cheers On 4/13/07, Paulo J. Matos <[EMAIL PROTECTED]> wrote: Hello all, I added to my configure.ac: AC_ARG_ENABLE([debug-par
Error in automake with AM_YFLAGS
Hello all, I added to my configure.ac: AC_ARG_ENABLE([debug-parser], AC_HELP_STRING([--enable-debug-parser], [enable parser debug (default is NO)]), [case "${enableval}" in yes) debug_parser=true;;