diff options
author | John Voltz <john.voltz@gmail.com> | 2008-03-11 18:26:07 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-03-11 18:26:07 +0000 |
commit | 7f4141ae20e2db75b0a8ffcfe231dabeb25ce7b2 (patch) | |
tree | 5976c7dd2f1b21720399353f18860f1917baebc1 /target/Makefile.in | |
parent | 944e92856ac4dc38d2993ef98512955ad2bb9947 (diff) | |
download | buildroot-novena-7f4141ae20e2db75b0a8ffcfe231dabeb25ce7b2.tar.gz buildroot-novena-7f4141ae20e2db75b0a8ffcfe231dabeb25ce7b2.zip |
separate u-boot for at91 arm and everything else
Diffstat (limited to 'target/Makefile.in')
-rw-r--r-- | target/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target/Makefile.in b/target/Makefile.in index 3e810883f..8283aa484 100644 --- a/target/Makefile.in +++ b/target/Makefile.in @@ -10,7 +10,10 @@ include target/generic/Makefile.in include target/device/Makefile.in include target/x86/Makefile.in include target/powerpc/Makefile.in -include target/device/Atmel/u-boot/u-boot.mk + +ifeq ($(strip $(BR2_TARGET_UBOOT)),y) +include target/u-boot/Makefile.in +endif # and finally build the filesystems/tarballs include target/*/*.mk |