summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Dolan <mu@netsoc.tcd.ie>2013-05-08 19:57:05 +0100
committerStephen Dolan <mu@netsoc.tcd.ie>2013-05-08 19:57:05 +0100
commitc710f91257a4fd02f51d0d4c0fa39b5db33437ec (patch)
tree4be296e342a6fb9e8c2b0d5d715841272e57101e
parenta511d03d85d734b149856289237ae5e2461f6bbe (diff)
Add the parser to BUILT_SOURCES
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 0810f0c6..52e73379 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