diff options
-rw-r--r-- | sys/conf/files | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sys/conf/files b/sys/conf/files index a4141906d664..32d02d8b3ba6 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -1,3 +1,18 @@ +aicasm optional ahc device-driver \ + dependency "$S/dev/aic7xxx/*.[chyl]" \ + compile-with "make -f $S/dev/aic7xxx/Makefile MAKESRCPATH=$S/dev/aic7xxx" \ + no-obj no-implicit-rule \ + clean "aicasm" +# +# The long compile-with and dependency lines are required because of +# limitations in config: backslash-newline doesn't work in strings, and +# dependency lines other than the first are silently ignored. +# +aic7xxx_{seq,reg}.h optional ahc device-driver \ + compile-with "./aicasm ${INCLUDES} -o aic7xxx_seq.h -r aic7xxx_reg.h $S/dev/aic7xxx/aic7xxx.seq" \ + no-obj no-implicit-rule before-depend \ + clean "aic7xxx_seq.h aic7xxx_reg.h" \ + dependency "$S/dev/aic7xxx/aic7xxx.{reg,seq} $S/scsi/scsi_message.h aicasm" ddb/db_access.c optional ddb ddb/db_aout.c optional ddb ddb/db_break.c optional ddb @@ -86,6 +101,7 @@ kern/kern_time.c standard kern/kern_xxx.c standard kern/md5c.c optional md5 kern/subr_diskslice.c standard +kern/subr_autoconf.c standard kern/subr_dkbad.c standard kern/subr_log.c standard kern/subr_prf.c standard |