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