diff options
author | Masahiro Yamada | 2020-05-26 14:20:31 +0100 |
---|---|---|
committer | Russell King | 2020-07-21 16:33:35 +0100 |
commit | 846484ea73f17c86533496455bcf49f373dde3fd (patch) | |
tree | 70f948853106839dc3723f565545026fff9bf8e1 /arch/arm/Makefile | |
parent | dcb7fd82c75ee2d6e6f9d8cc71c52519ed52e258 (diff) |
ARM: 8981/1: add arch/arm/Kbuild
Use the standard obj-y form to specify the sub-directories under
arch/arm/. No functional change intended.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Diffstat (limited to 'arch/arm/Makefile')
-rw-r--r-- | arch/arm/Makefile | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/arch/arm/Makefile b/arch/arm/Makefile index 59fde2d598d8..2731c20dee58 100644 --- a/arch/arm/Makefile +++ b/arch/arm/Makefile @@ -275,18 +275,8 @@ endif export TEXT_OFFSET GZFLAGS MMUEXT -core-$(CONFIG_FPE_NWFPE) += arch/arm/nwfpe/ -# Put arch/arm/fastfpe/ to use this. -core-$(CONFIG_FPE_FASTFPE) += $(patsubst $(srctree)/%,%,$(wildcard $(srctree)/arch/arm/fastfpe/)) -core-$(CONFIG_VFP) += arch/arm/vfp/ -core-$(CONFIG_XEN) += arch/arm/xen/ -core-$(CONFIG_VDSO) += arch/arm/vdso/ - +core-y += arch/arm/ # If we have a machine-specific directory, then include it in the build. -core-y += arch/arm/kernel/ arch/arm/mm/ arch/arm/common/ -core-y += arch/arm/probes/ -core-y += arch/arm/net/ -core-y += arch/arm/crypto/ core-y += $(machdirs) $(platdirs) # For cleaning |