]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/aic7xxx/ahc/Makefile
Merge compiler-rt trunk r300890, and update build glue.
[FreeBSD/FreeBSD.git] / sys / modules / aic7xxx / ahc / Makefile
1
2 # $FreeBSD$
3
4 SYSDIR?=${SRCTOP}/sys
5 .include "${SYSDIR}/conf/kern.opts.mk"
6
7 .PATH:  ${SYSDIR}/dev/aic7xxx
8 KMOD=   ahc
9 SUBDIR+= ahc_isa ahc_pci
10
11 GENSRCS= aic7xxx_seq.h aic7xxx_reg.h
12 AHC_REG_PRETTY_PRINT=1
13 REG_PRINT_OPT=
14 .ifdef AHC_REG_PRETTY_PRINT
15 GENSRCS+= aic7xxx_reg_print.c
16 CFLAGS+= -DAHC_REG_PRETTY_PRINT=1
17 REG_PRINT_OPT= -p aic7xxx_reg_print.c
18 .endif
19 BEFORE_DEPEND = ${GENSRCS}
20
21 ../aicasm/aicasm: ${SYSDIR}/dev/aic7xxx/aicasm/*.[chyl]
22         ( cd ${.CURDIR}/../aicasm; ${MAKE} aicasm; )
23
24 .if make(ahcfirmware)
25 ahcfirmware: ${GENSRCS}
26 ${GENSRCS}:                                                              \
27                 ${SYSDIR}/dev/aic7xxx/aic7xxx.{reg,seq}  \
28                 ${SYSDIR}/cam/scsi/scsi_message.h 
29         ../aicasm/aicasm ${INCLUDES} -I${SYSDIR}/cam/scsi        \
30                         -I${SYSDIR}/dev/aic7xxx          \
31                         -o aic7xxx_seq.h -r aic7xxx_reg.h                \
32                         ${REG_PRINT_OPT}                                 \
33                         -i ${SYSDIR}/dev/aic7xxx/aic7xxx_osm.h \
34                         ${SYSDIR}/dev/aic7xxx/aic7xxx.seq
35 .elif defined(.MAKE.LEVEL)
36 # This target interfers with fmake's world view and causes this message
37 # to appear when building the tree from 8.x worlds where fmake is the
38 # default. fmake doens't define .MAKE.LEVEL so key off that to omit it,
39 # while still allowing more-modern makes to theoretically update things.
40 ${GENSRCS}:
41         @echo "Error: ${.TARGET} is missing.  Run 'make ahcfirmware'"
42 .endif
43
44
45 SRCS= ${GENSRCS}
46 SRCS+= aic7xxx.c aic7xxx_93cx6.c aic7xxx_osm.c aic7770.c
47 SRCS+= opt_scsi.h opt_aic7xxx.h opt_cam.h
48 SRCS+= device_if.h bus_if.h pci_if.h
49
50 .if make(cleanfirmware)
51 cleanfirmware: clean
52 CLEANFILES= ${GENSRCS}
53 .endif
54
55 .include <bsd.kmod.mk>