diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-20 11:27:45 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-07-20 11:27:45 +0000 |
commit | 12ceed63758014033043fbb48eb9a0e94d75e478 (patch) | |
tree | 6572dc5c25d1ff6b70e2f3dbb8fdde3a3251ae39 /target/Makefile.in | |
parent | 91a999f3bab43d57fc2c7937d7307a5c1e5bc752 (diff) | |
download | buildroot-novena-12ceed63758014033043fbb48eb9a0e94d75e478.tar.gz buildroot-novena-12ceed63758014033043fbb48eb9a0e94d75e478.zip |
Add experimental linux target option
Diffstat (limited to 'target/Makefile.in')
-rw-r--r-- | target/Makefile.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/target/Makefile.in b/target/Makefile.in index b951301b2..7b377667c 100644 --- a/target/Makefile.in +++ b/target/Makefile.in @@ -17,4 +17,13 @@ include target/*/*.mk # kernel rules # We already did add the kernel target to TARGETS and now just pull in the rules # to actually build this target. -include target/linux/Makefile.in + +ifeq ($(strip $(subst ",,$(BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG))),n) +#")) +include target/linux/Makefile.in +endif +ifeq ($(strip $(subst ",,$(BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG))),y) +#")) +include target/linux-experimental/Makefile.in +endif + |