Makefile.in 831 B

123456789101112131415161718192021222324252627
  1. BR2_PACKAGE_LINUX_FORMAT:=$(strip $(subst ",,$(BR2_PACKAGE_LINUX_FORMAT)))
  2. #"))
  3. BR2_PACKAGE_LINUX_KCONFIG:=$(strip $(subst ",,$(BR2_PACKAGE_LINUX_KCONFIG)))
  4. #"))
  5. # make sure to put everything that is board-specific before the tarroot targets
  6. include target/generic/Makefile.in
  7. # this eventually adds the kernel target to TARGETS:
  8. include target/device/Makefile.in
  9. include target/x86/Makefile.in
  10. include target/powerpc/Makefile.in
  11. # and finally build the filesystems/tarballs
  12. include target/*/*.mk
  13. # kernel rules
  14. # We already did add the kernel target to TARGETS and now just pull in the rules
  15. # to actually build this target.
  16. ifeq ($(strip $(subst ",,$(BR2_PACKAGE_LINUX_EXPERIMENTAL_CONFIG))),y)
  17. #"))
  18. include target/linux/Makefile.in
  19. #include target/linux-experimental/Makefile.in
  20. else
  21. include target/linux/Makefile.in
  22. endif