Deleted Added
full compact
Makefile (101131) Makefile (102690)
1
1
2# $FreeBSD: head/sys/modules/aic7xxx/ahd/Makefile 101131 2002-08-01 01:36:39Z scottl $
2# $FreeBSD: head/sys/modules/aic7xxx/ahd/Makefile 102690 2002-08-31 06:57:50Z gibbs $
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
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
12aic79xx_{seq.h,reg.h,reg_print.c}: \
13 ${.CURDIR}/../../../dev/aic7xxx/aic79xx.{reg,seq} \
14 ${.CURDIR}/../../../cam/scsi/scsi_message.h ../aicasm/aicasm
15 ${.OBJDIR}/../aicasm/aicasm ${INCLUDES} -I${.CURDIR}/../../../cam/scsi \
16 -I${.CURDIR}/../../../dev/aic7xxx \
17 -o aic79xx_seq.h -r aic79xx_reg.h \
18 -p aic79xx_reg_print.c \
19 -i ${.CURDIR}/../../../dev/aic7xxx/aic79xx_osm.h \
20 ${.CURDIR}/../../../dev/aic7xxx/aic79xx.seq
17
18GENSRCS= aic79xx_reg.h aic79xx_seq.h
19
20SRCS= ${GENSRCS}
21
22GENSRCS= aic79xx_reg.h aic79xx_seq.h
23
24SRCS= ${GENSRCS}
25AHD_REG_PRETTY_PRINT=1
26.ifdef AHD_REG_PRETTY_PRINT
27SRCS+= aic79xx_reg_print.c
28CFLAGS+= -DAHD_REG_PRETTY_PRINT=1
29.endif
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
30SRCS+= aic79xx.c aic79xx_osm.c aic79xx_pci.c ahd_pci.c
31SRCS+= opt_scsi.h opt_aic79xx.h opt_cam.h opt_ddb.h
32SRCS+= device_if.h bus_if.h pci_if.h
33
25CLEANFILES= ${GENSRCS}
34CLEANFILES= ${GENSRCS} aic79xx_reg_print.c
26
27.include <bsd.kmod.mk>
35
36.include <bsd.kmod.mk>