Skip to content
Snippets Groups Projects
Commit 7b6af41e authored by Masahiro Yamada's avatar Masahiro Yamada Committed by Tom Rini
Browse files

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: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
parent 1b2226e0
No related branches found
No related tags found
No related merge requests found
obj-y += bios_emulator/ obj-$(CONFIG_BIOSEMU) += bios_emulator/
obj-y += block/ obj-y += block/
obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/ obj-$(CONFIG_BOOTCOUNT_LIMIT) += bootcount/
obj-y += crypto/ obj-y += crypto/
obj-y += fpga/ obj-$(CONFIG_FPGA) += fpga/
obj-y += hwmon/ obj-y += hwmon/
obj-y += misc/ obj-y += misc/
obj-y += pcmcia/ obj-y += pcmcia/
......
...@@ -2,7 +2,7 @@ X86DIR = x86emu ...@@ -2,7 +2,7 @@ X86DIR = x86emu
$(shell mkdir -p $(obj)$(X86DIR)) $(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)/decode.o \
$(X86DIR)/ops2.o \ $(X86DIR)/ops2.o \
$(X86DIR)/ops.o \ $(X86DIR)/ops.o \
......
...@@ -5,7 +5,6 @@ ...@@ -5,7 +5,6 @@
# SPDX-License-Identifier: GPL-2.0+ # SPDX-License-Identifier: GPL-2.0+
# #
ifdef CONFIG_FPGA
obj-y += fpga.o obj-y += fpga.o
obj-$(CONFIG_FPGA_SPARTAN2) += spartan2.o obj-$(CONFIG_FPGA_SPARTAN2) += spartan2.o
obj-$(CONFIG_FPGA_SPARTAN3) += spartan3.o obj-$(CONFIG_FPGA_SPARTAN3) += spartan3.o
...@@ -19,4 +18,3 @@ obj-$(CONFIG_FPGA_ACEX1K) += ACEX1K.o ...@@ -19,4 +18,3 @@ obj-$(CONFIG_FPGA_ACEX1K) += ACEX1K.o
obj-$(CONFIG_FPGA_CYCLON2) += cyclon2.o obj-$(CONFIG_FPGA_CYCLON2) += cyclon2.o
obj-$(CONFIG_FPGA_STRATIX_II) += stratixII.o obj-$(CONFIG_FPGA_STRATIX_II) += stratixII.o
endif endif
endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment