From: Stephen Dolan Date: Wed, 8 May 2013 18:57:05 +0000 (+0100) Subject: Add the parser to BUILT_SOURCES X-Git-Tag: jq-1.3~22^2~16 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c710f91257a4fd02f51d0d4c0fa39b5db33437ec;p=jq Add the parser to BUILT_SOURCES --- diff --git a/Makefile.am b/Makefile.am index 0810f0c..52e7337 100644 --- a/Makefile.am +++ b/Makefile.am @@ -20,7 +20,7 @@ AM_CFLAGS = -Wextra -Wall -Wno-missing-field-initializers \ # While there is some autoconf macro support for lex/flex, it doesn't support # header file creation so we'll use good old make -BUILT_SOURCES = lexer.h lexer.c +BUILT_SOURCES = lexer.h lexer.c parser.h parser.c lexer.c: lexer.l flex -o lexer.c --header-file=lexer.h lexer.l lexer.h: lexer.c