make obj before building the aic7xxx assembler. This puts the object

files in the right place.

The clean rule still isn't quite right since currently config doesn't
allow the specification of arbitrary clean rules.
This commit is contained in:
Justin T. Gibbs 1997-04-03 05:57:16 +00:00
parent cbc7db3bf7
commit d98667394d
2 changed files with 6 additions and 6 deletions

View File

@ -1,18 +1,18 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.156 1997/03/16 17:25:53 bde Exp $
# $Id: files.i386,v 1.157 1997/03/22 18:51:29 kato Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/*.[chyl]" \
compile-with "cd $S/dev/aic7xxx; make BINDIR=${.CURDIR} all install" \
compile-with "cd $S/dev/aic7xxx; make obj; make BINDIR=${.CURDIR} all install" \
no-obj no-implicit-rule \
clean "aic7xxx_asm"
#
aic7xxx_{seq,reg}.h optional ahc device-driver \
compile-with "./aic7xxx_asm ${INCLUDES} -o aic7xxx_seq.h -r aic7xxx_reg.h $S/dev/aic7xxx/aic7xxx.seq" \
no-obj no-implicit-rule before-depend \
clean "aic7xxx_{seq,reg}.h" \
clean "aic7xxx_seq.h aic7xxx_reg.h" \
dependency "$S/dev/aic7xxx/aic7xxx.{reg,seq} aic7xxx_asm"
#
linux_genassym optional compat_linux \

View File

@ -1,18 +1,18 @@
# This file tells config what files go into building a kernel,
# files marked standard are always included.
#
# $Id: files.i386,v 1.156 1997/03/16 17:25:53 bde Exp $
# $Id: files.i386,v 1.157 1997/03/22 18:51:29 kato Exp $
#
aic7xxx_asm optional ahc device-driver \
dependency "$S/dev/aic7xxx/*.[chyl]" \
compile-with "cd $S/dev/aic7xxx; make BINDIR=${.CURDIR} all install" \
compile-with "cd $S/dev/aic7xxx; make obj; make BINDIR=${.CURDIR} all install" \
no-obj no-implicit-rule \
clean "aic7xxx_asm"
#
aic7xxx_{seq,reg}.h optional ahc device-driver \
compile-with "./aic7xxx_asm ${INCLUDES} -o aic7xxx_seq.h -r aic7xxx_reg.h $S/dev/aic7xxx/aic7xxx.seq" \
no-obj no-implicit-rule before-depend \
clean "aic7xxx_{seq,reg}.h" \
clean "aic7xxx_seq.h aic7xxx_reg.h" \
dependency "$S/dev/aic7xxx/aic7xxx.{reg,seq} aic7xxx_asm"
#
linux_genassym optional compat_linux \