11 lines
415 B
Makefile
11 lines
415 B
Makefile
# Makefile for the Linux transform drivers on sunxi platform.
|
|
# 23 jan 2015, Tyle, <mailto:tyle@allwinnertech.com>
|
|
# Rewritten to use lists instead of if-statements.
|
|
|
|
obj-$(CONFIG_SUNXI_TRANSFORM) += sunxi_tr.o
|
|
|
|
sunxi_tr-y := sunxi_transform.o
|
|
sunxi_tr-$(CONFIG_ARCH_SUN50IW1) += sun50iw1_transform.o
|
|
sunxi_tr-$(CONFIG_ARCH_SUN8IW11) += sun8iw11_transform.o
|
|
sunxi_tr-$(CONFIG_ARCH_SUN50IW3) += sun8iw11_transform.o
|