diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2005-04-22 20:00:41 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2005-04-22 20:00:41 +0000 |
commit | 484060ebae35d47b364c2f18dde5928e74fe8946 (patch) | |
tree | 1d392fef0840e4a397071f4f946b5a603ff2a259 /sys/conf | |
parent | 3365523e541f49b13dd7eb413d385307f08e26d2 (diff) | |
download | src-484060ebae35d47b364c2f18dde5928e74fe8946.tar.gz src-484060ebae35d47b364c2f18dde5928e74fe8946.zip |
Make aic*_reg_print.o appear in the .depend file, fixing the "make"
failure after "make depend; make clean".
Prodded by: bde
Notes
Notes:
svn path=/head/; revision=145417
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/files | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/sys/conf/files b/sys/conf/files index a396d709c32a..5a6b1fe7403e 100644 --- a/sys/conf/files +++ b/sys/conf/files @@ -19,19 +19,39 @@ aicasm optional ahd \ compile-with "CC=${CC} ${MAKE} -f $S/dev/aic7xxx/aicasm/Makefile MAKESRCPATH=$S/dev/aic7xxx/aicasm" \ no-obj no-implicit-rule \ clean "aicasm* y.tab.h" -aic7xxx_{seq.h,reg.h,reg_print.c} optional ahc \ - compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic7xxx_seq.h -r aic7xxx_reg.h -p aic7xxx_reg_print.c -i $S/dev/aic7xxx/aic7xxx_osm.h $S/dev/aic7xxx/aic7xxx.seq" \ - no-obj no-implicit-rule before-depend \ - clean "aic7xxx_seq.h aic7xxx_reg.h aic7xxx_reg_print.c" \ +aic7xxx_seq.h optional ahc \ + compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic7xxx_seq.h -r aic7xxx_reg.h -p aic7xxx_reg_print.c -i $S/dev/aic7xxx/aic7xxx_osm.h $S/dev/aic7xxx/aic7xxx.seq" \ + no-obj no-implicit-rule before-depend local \ + clean "aic7xxx_seq.h" \ + dependency "$S/dev/aic7xxx/aic7xxx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" +aic7xxx_reg.h optional ahc \ + compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic7xxx_seq.h -r aic7xxx_reg.h -p aic7xxx_reg_print.c -i $S/dev/aic7xxx/aic7xxx_osm.h $S/dev/aic7xxx/aic7xxx.seq" \ + no-obj no-implicit-rule before-depend local \ + clean "aic7xxx_reg.h" \ + dependency "$S/dev/aic7xxx/aic7xxx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" +aic7xxx_reg_print.c optional ahc \ + compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic7xxx_seq.h -r aic7xxx_reg.h -p aic7xxx_reg_print.c -i $S/dev/aic7xxx/aic7xxx_osm.h $S/dev/aic7xxx/aic7xxx.seq" \ + no-obj no-implicit-rule local \ + clean "aic7xxx_reg_print.c" \ dependency "$S/dev/aic7xxx/aic7xxx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" aic7xxx_reg_print.o optional ahc ahc_reg_pretty_print \ compile-with "${NORMAL_C}" \ no-implicit-rule local -aic79xx_{seq.h,reg.h,reg_print.c} optional ahd pci \ +aic79xx_seq.h optional ahd pci \ compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic79xx_seq.h -r aic79xx_reg.h -p aic79xx_reg_print.c -i $S/dev/aic7xxx/aic79xx_osm.h $S/dev/aic7xxx/aic79xx.seq" \ - no-obj no-implicit-rule before-depend \ - clean "aic79xx_seq.h aic79xx_reg.h aic79xx_reg_print.c" \ - dependency "$S/dev/aic7xxx/aic79xx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" + no-obj no-implicit-rule before-depend local \ + clean "aic79xx_seq.h" \ + dependency "$S/dev/aic7xxx/aic79xx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" +aic79xx_reg.h optional ahd pci \ + compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic79xx_seq.h -r aic79xx_reg.h -p aic79xx_reg_print.c -i $S/dev/aic7xxx/aic79xx_osm.h $S/dev/aic7xxx/aic79xx.seq" \ + no-obj no-implicit-rule before-depend local \ + clean "aic79xx_reg.h" \ + dependency "$S/dev/aic7xxx/aic79xx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" +aic79xx_reg_print.c optional ahd pci \ + compile-with "./aicasm ${INCLUDES} -I$S/cam/scsi -I$S/dev/aic7xxx -o aic79xx_seq.h -r aic79xx_reg.h -p aic79xx_reg_print.c -i $S/dev/aic7xxx/aic79xx_osm.h $S/dev/aic7xxx/aic79xx.seq" \ + no-obj no-implicit-rule local \ + clean "aic79xx_reg_print.c" \ + dependency "$S/dev/aic7xxx/aic79xx.{reg,seq} $S/cam/scsi/scsi_message.h aicasm" aic79xx_reg_print.o optional ahd pci ahd_reg_pretty_print \ compile-with "${NORMAL_C}" \ no-implicit-rule local |