1 2# $FreeBSD$ 3 4.PATH: ${.CURDIR}/../../../dev/aic7xxx 5KMOD= ahd 6 7BEFORE_DEPEND= aic79xx_{seq,reg}.h 8 9../aicasm/aicasm: 10 ( cd ${.CURDIR}/../aicasm; ${MAKE} aicasm; ) 11 12aic79xx_{seq,reg}.h: ${.CURDIR}/../../../dev/aic7xxx/aic79xx.{reg,seq} \ 13 ${.CURDIR}/../../../cam/scsi/scsi_message.h ../aicasm/aicasm 14 ${.CURDIR}/../aicasm/aicasm ${INCLUDES} -I${.CURDIR}/../../../cam/scsi \ 15 -I${.CURDIR}/../../../dev/aic7xxx -o aic79xx_seq.h -r aic79xx_reg.h \ 16 ${.CURDIR}/../../../dev/aic7xxx/aic79xx.seq 17 18GENSRCS= aic79xx_reg.h aic79xx_seq.h 19 20SRCS= ${GENSRCS} 21SRCS+= aic79xx.c aic79xx_osm.c aic79xx_pci.c ahd_pci.c 22SRCS+= opt_scsi.h opt_aic79xx.h opt_cam.h opt_ddb.h 23SRCS+= device_if.h bus_if.h pci_if.h 24 25CLEANFILES= ${GENSRCS} 26 27.include <bsd.kmod.mk> 28