diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2017-03-14 11:30:30 -0700 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-03-26 15:48:58 +0200 |
commit | 8efa2d8de920228130235ad6c0a2aeb19a6ae4be (patch) | |
tree | d98f6e531dff197504f087d5ae33c1d218bfe4db | |
parent | c9e5b04230f9ec5b40e1b1d1c4a5f94b8d3497ff (diff) | |
download | buildroot-8efa2d8de920228130235ad6c0a2aeb19a6ae4be.tar.gz buildroot-8efa2d8de920228130235ad6c0a2aeb19a6ae4be.zip |
core: include arch-specific definitions
Allow architectures to define variables and helper macros.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Peter Korsgaard <jacmet@uclibc.org>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -479,6 +479,9 @@ all: world include Makefile.legacy include package/Makefile.in +# arch/arch.mk.* must be after package/Makefile.in because it may need to +# complement variables defined therein, like BR_NO_CHECK_HASH_FOR. +-include $(wildcard arch/arch.mk.*) include support/dependencies/dependencies.mk include toolchain/*.mk |