Note yacc and lex generated files as BUILT_SOURCES so they are created
authorKeith Packard <keithp@keithp.com>
Tue, 2 Aug 2005 06:48:20 +0000 (06:48 +0000)
committerKeith Packard <keithp@keithp.com>
Tue, 2 Aug 2005 06:48:20 +0000 (06:48 +0000)
    before anything is compiled; required for parallel builds

ChangeLog
hw/dmx/config/Makefile.am

index d8214f7..246c543 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index c761c48..a4dbbe4 100644 (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)