1# $FreeBSD$ 2 3.PATH: ${.CURDIR}/../../dev/bhnd 4.PATH: ${.CURDIR}/../../dev/bhnd/nvram 5 6KMOD= bhnd 7SRCS= bhnd.c \ 8 bhnd_subr.c 9 10SRCS+= bhnd_nvram.c \ 11 bhnd_nvram_parser.c \ 12 bhnd_sprom.c \ 13 bhnd_sprom_parser.c 14SRCS+= bhnd_nvram_common.c 15SRCS+= bhnd_nvram_map.h bhnd_nvram_map_data.h 16 17SRCS+= bhnd_bus_if.c bhnd_bus_if.h \ 18 bhnd_chipc_if.c bhnd_chipc_if.h \ 19 bhnd_nvram_if.c bhnd_nvram_if.h 20 21SRCS+= device_if.h bus_if.h 22 23SUBDIR= bcma \ 24 bcma_bhndb \ 25 bhndb \ 26 bhndb_pci \ 27 cores \ 28 siba \ 29 siba_bhndb 30 31.include <bsd.kmod.mk> 32.include <bsd.subdir.mk> 33