diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2013-11-11 14:35:51 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-11-17 14:11:30 -0500 |
commit | 7b6af41ef342199e4967735ea17424b42ed742d2 (patch) | |
tree | 39baaeee06c1e1c5457e5bebcf7a85ec58e4886b /drivers/bios_emulator | |
parent | 1b2226e0ceebf01e192715b77b96dbe9e9f75a4b (diff) | |
download | u-boot-7b6af41ef342199e4967735ea17424b42ed742d2.tar.gz |
drivers: descend into sub directories only when it is necessary
- Descend into drivers/fpga/ only when CONFIG_FPGA=y
- Descend into drivers/bios_emulator only when CONFIG_BIOSEMU=y
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'drivers/bios_emulator')
-rw-r--r-- | drivers/bios_emulator/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/bios_emulator/Makefile b/drivers/bios_emulator/Makefile index dd42e0f766..9aa8ea9020 100644 --- a/drivers/bios_emulator/Makefile +++ b/drivers/bios_emulator/Makefile @@ -2,7 +2,7 @@ X86DIR = x86emu $(shell mkdir -p $(obj)$(X86DIR)) -obj-$(CONFIG_BIOSEMU) = atibios.o biosemu.o besys.o bios.o \ +obj-y = atibios.o biosemu.o besys.o bios.o \ $(X86DIR)/decode.o \ $(X86DIR)/ops2.o \ $(X86DIR)/ops.o \ |