Use my newly acquired magic stick and put aslcompiler.y.h into

SRCS to teach make(1) that many .c sources are dependent on it.
This fixes parallel (-j) builds and makes it possible to build
individual .o files separately.

While here, removed PROG from CLEANFILES -- it's taken care of
already by bsd.prog.mk.
This commit is contained in:
Ruslan Ermilov 2004-01-11 19:26:33 +00:00
parent d8e4c710eb
commit c3d0f96a5a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=124388

View File

@ -1,7 +1,8 @@
# $FreeBSD$
PROG= iasl
SRCS+= aslcompilerparse.c aslcompilerlex.c aslanalyze.c aslcodegen.c \
SRCS+= aslcompiler.y.h aslcompilerparse.c aslcompilerlex.c \
aslanalyze.c aslcodegen.c \
aslcompile.c aslerror.c aslfiles.c asllength.c \
asllisting.c aslload.c asllookup.c aslmain.c \
aslmap.c aslopcodes.c asloperands.c aslresource.c \
@ -38,9 +39,9 @@ CFLAGS+= -D_USE_BERKELEY_YACC
.endif
CLEANFILES= y.output y.tab.c y.tab.h aslcompiler.y.h \
aslcompilerparse.c aslcompilerlex.c iasl
aslcompilerparse.c aslcompilerlex.c
aslcompilerparse.c: aslcompiler.y
aslcompilerparse.c aslcompiler.y.h: aslcompiler.y
${YACC} ${YFLAGS} ${ACPICA_DIR}/compiler/aslcompiler.y
cp y.tab.c aslcompilerparse.c
cp y.tab.h aslcompiler.y.h