summaryrefslogtreecommitdiffstats
path: root/sys/modules/aic7xxx/ahc/Makefile
blob: cb59d9aa4c95f67f83d1480f050cb8241bc3efc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

# $FreeBSD$

.include <src.opts.mk>

.PATH:	${.CURDIR}/../../../dev/aic7xxx
KMOD=	ahc
.if ${MK_EISA} != "no"
SUBDIR+= ahc_eisa
.endif
SUBDIR+= ahc_isa ahc_pci

GENSRCS= aic7xxx_seq.h aic7xxx_reg.h
AHC_REG_PRETTY_PRINT=1
REG_PRINT_OPT=
.ifdef AHC_REG_PRETTY_PRINT
GENSRCS+= aic7xxx_reg_print.c
CFLAGS+= -DAHC_REG_PRETTY_PRINT=1
REG_PRINT_OPT= -p aic7xxx_reg_print.c
.endif
BEFORE_DEPEND = ${GENSRCS}

../aicasm/aicasm: ${.CURDIR}/../../../dev/aic7xxx/aicasm/*.[chyl]
	( cd ${.CURDIR}/../aicasm; ${MAKE} aicasm; )

.if make(ahcfirmware)
ahcfirmware: ${GENSRCS}
${GENSRCS}:								 \
		${.CURDIR}/../../../dev/aic7xxx/aic7xxx.{reg,seq}	 \
		${.CURDIR}/../../../cam/scsi/scsi_message.h 
	../aicasm/aicasm ${INCLUDES} -I${.CURDIR}/../../../cam/scsi	 \
			-I${.CURDIR}/../../../dev/aic7xxx		 \
			-o aic7xxx_seq.h -r aic7xxx_reg.h		 \
			${REG_PRINT_OPT}				 \
			-i ${.CURDIR}/../../../dev/aic7xxx/aic7xxx_osm.h \
			${.CURDIR}/../../../dev/aic7xxx/aic7xxx.seq
.else
${GENSRCS}:
	@echo "Error: ${.TARGET} is missing.  Run 'make ahcfirmware'"
.endif


SRCS= ${GENSRCS}
SRCS+= aic7xxx.c aic7xxx_93cx6.c aic7xxx_osm.c aic7770.c
SRCS+= opt_scsi.h opt_aic7xxx.h opt_cam.h
SRCS+= device_if.h bus_if.h pci_if.h

.if make(cleanfirmware)
cleanfirmware: clean
CLEANFILES= ${GENSRCS}
.endif

.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud