diff options
author | Masahiro Yamada | 2014-11-13 12:28:40 +0900 |
---|---|---|
committer | Tom Rini | 2014-11-23 06:49:02 -0500 |
commit | 165ecd26f036b1952dbf25823fbff7c0a403a29f (patch) | |
tree | 8fdcc3673d5717bfec06c823348db9d3e1338d2f /arch/avr32/cpu | |
parent | be25d875b924cbd50d49fd9f343e70d86b7ad7e0 (diff) |
kbuild: Descend into SOC directory from CPU directory
Some CPUs of some architectures have SOC directories.
At present, the build system directly descends into SOC directories
from the top Makefile, but it should generally descend into each
directory from its parent directory.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'arch/avr32/cpu')
-rw-r--r-- | arch/avr32/cpu/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/avr32/cpu/Makefile b/arch/avr32/cpu/Makefile index 5e117212574..2f7adf8136d 100644 --- a/arch/avr32/cpu/Makefile +++ b/arch/avr32/cpu/Makefile @@ -16,3 +16,5 @@ obj-y += cache.o obj-y += interrupts.o obj-$(CONFIG_PORTMUX_PIO) += portmux-pio.o obj-$(CONFIG_PORTMUX_GPIO) += portmux-gpio.o + +obj-y += $(if $(SOC),$(SOC)/) |