Note yacc and lex generated files as BUILT_SOURCES so they are created

before anything is compiled; required for parallel builds
This commit is contained in:
Keith Packard 2005-08-02 06:48:20 +00:00
parent d31de217e6
commit 0c608a690e
2 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2005-08-01 Keith Packard <keithp@keithp.com>
* hw/dmx/config/Makefile.am:
Note yacc and lex generated files as BUILT_SOURCES so
they are created before anything is compiled; required
for parallel builds
2005-07-06 Alexander Gottwald <ago@freedesktop.org>
* configure.ac:

View File

@ -14,7 +14,9 @@ LIBSRCS = parser.y \
parser.h: parser.c
scanner.c: scanner.l parser.h
CLEANFILES = parser.c parser.h scanner.c
BUILT_SOURCES = parser.c parser.h scanner.c
CLEANFILES = $(BUILT_SOURCES)
libdmxconfig_a_SOURCES = $(LIBSRCS)