1 2# $FreeBSD$ 3 4.PATH: ${.CURDIR}/../../../dev/aic7xxx 5KMOD= ahc 6SUBDIR= ahc_eisa ahc_pci 7 8BEFORE_DEPEND= aic7xxx_{seq,reg}.h 9 10../aicasm/aicasm: 11 ( cd ${.CURDIR}/../aicasm; ${MAKE} aicasm; ) 12 13aic7xxx_{seq,reg}.h: ${.CURDIR}/../../../dev/aic7xxx/aic7xxx.{reg,seq} \ 14 ${.CURDIR}/../../../cam/scsi/scsi_message.h ../aicasm/aicasm 15 ${.CURDIR}/../aicasm/aicasm ${INCLUDES} -I${.CURDIR}/../../../cam/scsi \ 16 -I${.CURDIR}/../../../dev/aic7xxx -o aic7xxx_seq.h -r aic7xxx_reg.h \ 17 ${.CURDIR}/../../../dev/aic7xxx/aic7xxx.seq 18 19GENSRCS= aic7xxx_reg.h aic7xxx_seq.h 20 21SRCS= ${GENSRCS} 22SRCS+= aic7xxx.c aic7xxx_93cx6.c aic7xxx_osm.c 23SRCS+= opt_scsi.h opt_aic7xxx.h opt_cam.h 24SRCS+= device_if.h bus_if.h pci_if.h 25 26CLEANFILES= ${GENSRCS} 27 28.include <bsd.kmod.mk> 29