19 lines
347 B
Makefile
19 lines
347 B
Makefile
|
#
|
||
|
# Makefile for BTS device driver
|
||
|
#
|
||
|
|
||
|
obj-$(CONFIG_EXYNOS_BTS) += exynos-bts.o
|
||
|
|
||
|
# Chipset Dependent code
|
||
|
ifdef CONFIG_SOC_EXYNOS2100
|
||
|
obj-$(CONFIG_EXYNOS_BTS) += exynos-btsops2100.0
|
||
|
endif
|
||
|
|
||
|
ifdef CONFIG_SOC_S5E9925
|
||
|
obj-$(CONFIG_EXYNOS_BTS) += exynos-btsops9925.o
|
||
|
endif
|
||
|
|
||
|
ifdef CONFIG_SOC_S5E8825
|
||
|
obj-$(CONFIG_EXYNOS_BTS) += exynos-btsops8825.o
|
||
|
endif
|