From: Matthew Dillon Date: Tue, 23 Mar 2010 05:07:45 +0000 (-0700) Subject: nrelease - Fix ordering dependency during parallel buildkernel X-Git-Url: https://gitweb.dragonflybsd.org/~syl/dragonfly.git/commitdiff_plain/ac50fd72eb2f57e10078aa8b2c177a2b0c29e774 nrelease - Fix ordering dependency during parallel buildkernel * Make sure aicasm_gram.h is generated before the aicasm_scan.l dependency. aicasm_scan.c is generated from aicasm_scan.l and depends on aicasm_gram.h. Not quite sure if this ORDER directive is correct. --- diff --git a/sys/dev/disk/aic7xxx/aicasm/Makefile b/sys/dev/disk/aic7xxx/aicasm/Makefile index 091d2a7ef6..2ee5134a7a 100644 --- a/sys/dev/disk/aic7xxx/aicasm/Makefile +++ b/sys/dev/disk/aic7xxx/aicasm/Makefile @@ -10,6 +10,7 @@ YSRCS= aicasm_gram.y aicasm_macro_gram.y LSRCS= aicasm_scan.l aicasm_macro_scan.l GENHDRS= aicasm_gram.h aicasm_macro_gram.h +.ORDER: aicasm_gram.h aicasm_scan.l SRCS= ${GENHDRS} ${CSRCS} ${YSRCS} ${LSRCS} CLEANFILES+= ${GENHDRS} ${YSRCS:R:C/(.*)/\1.output/g}