From 075b9aed734842bd70d07c1de4998e1af164ec6c Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Tue, 13 Aug 2002 16:30:58 +0000 Subject: [PATCH] fixing nonsrcdir builds Original commit message from CVS: fixing nonsrcdir builds --- gst/parse/Makefile.am | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/gst/parse/Makefile.am b/gst/parse/Makefile.am index d346877..14ba2b2 100644 --- a/gst/parse/Makefile.am +++ b/gst/parse/Makefile.am @@ -13,11 +13,8 @@ BUILT_SOURCES = grammar.tab.h grammar.tab.c lex.yy.c EXTRA_DIST = grammar.y parse.l types.h -grammar.tab.h: grammar.y - $(BISON) grammar.y - -grammar.tab.c: grammar.y - $(BISON) grammar.y - +grammar.tab.c grammar.tab.h: grammar.y + $(BISON) $^ + lex.yy.c: parse.l - flex parse.l + flex $^ -- 2.7.4