blob: 764cfcd117bcacf08e9a14a3e9f28e215c9f0ee6 [file] [log] [blame]
Arnout Vandecappelle (Essensium/Mind)ebcfa982012-11-12 10:08:28 +00001#
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
11ifeq ($(BR2_LEGACY),y)
12$(error "You have legacy configuration in your .config! Please check your configuration.")
13endif
Arnout Vandecappelle (Essensium/Mind)cc1cd3b2012-11-12 10:08:29 +000014
15#
Arnout Vandecappelle67680212014-02-04 16:18:51 +010016# Legacy options from 2014.02
17#
18
19# The BUILDROOT_DL_DIR environment variable was renamed by BR2_DL_DIR. We
20# want to detect someone using the old variable, _except_ if also the new
21# variable was set. By the time we get here, however, we no longer have
22# access to the BR2_DL_DIR environment variable (because it has been overridden
23# by the .config inclusion). However, the environment variable (if defined) was
24# saved in DL_DIR, so we can use that.
25ifneq ($(BUILDROOT_DL_DIR),)
26ifneq ($(BUILDROOT_DL_DIR),$(DL_DIR))
27$(error "The BUILDROOT_DL_DIR environment variable was renamed to BR2_DL_DIR.")
28endif
29endif
30
Arnout Vandecappelleaf97c942014-02-10 22:48:55 +010031# If a script is using the deprecated BUILDROOT_CONFIG, make sure it fails.
32# Add some directories in front just in case someone used dirname on it.
33BUILDROOT_CONFIG_FAKE = /tmp/deprecated/The-BUILDROOT_CONFIG-environment-variable-was-renamed-to-BR2_CONFIG
34
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +010035# Similar to above for BUILDROOT_CONFIG, but here we have no .config equivalent.
36ifneq ($(BUILDROOT_CONFIG),)
37ifneq ($(BUILDROOT_CONFIG),$(BR2_CONFIG))
Arnout Vandecappelleaf97c942014-02-10 22:48:55 +010038ifneq ($(BUILDROOT_CONFIG),$(BUILDROOT_CONFIG_FAKE))
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +010039$(error "The BUILDROOT_CONFIG environment variable was renamed to BR2_CONFIG.")
40endif
41endif
Arnout Vandecappelleaf97c942014-02-10 22:48:55 +010042endif
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +010043
Arnout Vandecappelleaf97c942014-02-10 22:48:55 +010044BUILDROOT_CONFIG = $(BUILDROOT_CONFIG_FAKE)
Arnout Vandecappelle4113b3c2014-02-04 16:18:52 +010045export BUILDROOT_CONFIG
46
Arnout Vandecappelle67680212014-02-04 16:18:51 +010047#
Arnout Vandecappelle (Essensium/Mind)be2460c2012-11-12 10:08:30 +000048# Legacy options from 2012.08
49#
50
51host-pkg-config:
52 @$(call MESSAGE,host-pkg-config is replaced by host-pkgconf)
53 @$(call MESSAGE,please update your .mk files)
54 @false
55.PHONY: host-pkg-config
56
57#
Arnout Vandecappelle (Essensium/Mind)cc1cd3b2012-11-12 10:08:29 +000058# Legacy options from 2012.05
59#
60GENTARGETS = $$(error The GENTARGETS macro no longer exists; use $$$$(eval $$$$(generic-package)) or $$$$(eval $$$$(host-generic-package)))
61AUTOTARGETS = $$(error The AUTOTARGETS macro no longer exists; use $$$$(eval $$$$(autotools-package)) or $$$$(eval $$$$(host-autotools-package)))
62CMAKETARGETS = $$(error The CMAKETARGETS macro no longer exists; use $$$$(eval $$$$(cmake-package)) or $$$$(eval $$$$(host-cmake-package)))