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:
parent
d31de217e6
commit
0c608a690e
|
@ -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>
|
2005-07-06 Alexander Gottwald <ago@freedesktop.org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
|
@ -14,7 +14,9 @@ LIBSRCS = parser.y \
|
||||||
parser.h: parser.c
|
parser.h: parser.c
|
||||||
scanner.c: scanner.l parser.h
|
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)
|
libdmxconfig_a_SOURCES = $(LIBSRCS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue