Makefile.legacy 1.2 KB

123456789101112131415161718192021222324252627282930
  1. #
  2. # Makefile.legacy - support for backward compatibility
  3. #
  4. # This file contains placeholders to detect backward-compatibility problems.
  5. # When a buildroot "API" feature is being deprecated, a rule should be added
  6. # here that issues an error when the old feature is used.
  7. #
  8. # This file is not included if BR2_DEPRECATED is selected, so it is possible
  9. # to bypass the errors (although that's usually a bad idea).
  10. ifeq ($(BR2_LEGACY),y)
  11. $(error "You have legacy configuration in your .config! Please check your configuration.")
  12. endif
  13. #
  14. # Legacy options from 2012.08
  15. #
  16. host-pkg-config:
  17. @$(call MESSAGE,host-pkg-config is replaced by host-pkgconf)
  18. @$(call MESSAGE,please update your .mk files)
  19. @false
  20. .PHONY: host-pkg-config
  21. #
  22. # Legacy options from 2012.05
  23. #
  24. GENTARGETS = $$(error The GENTARGETS macro no longer exists; use $$$$(eval $$$$(generic-package)) or $$$$(eval $$$$(host-generic-package)))
  25. AUTOTARGETS = $$(error The AUTOTARGETS macro no longer exists; use $$$$(eval $$$$(autotools-package)) or $$$$(eval $$$$(host-autotools-package)))
  26. CMAKETARGETS = $$(error The CMAKETARGETS macro no longer exists; use $$$$(eval $$$$(cmake-package)) or $$$$(eval $$$$(host-cmake-package)))