]> Git Repo - buildroot-mgba.git/blame - Makefile.legacy
package/mrouted: bump version to v4.4
[buildroot-mgba.git] / Makefile.legacy
CommitLineData
ebcfa987
AVEM
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.
ebcfa987
AVEM
7
8ifeq ($(BR2_LEGACY),y)
9$(error "You have legacy configuration in your .config! Please check your configuration.")
10endif
cc1cd3b2 11
6768021c
AV
12#
13# Legacy options from 2014.02
14#
15
16# The BUILDROOT_DL_DIR environment variable was renamed by BR2_DL_DIR. We
17# want to detect someone using the old variable, _except_ if also the new
18# variable was set. By the time we get here, however, we no longer have
19# access to the BR2_DL_DIR environment variable (because it has been overridden
20# by the .config inclusion). However, the environment variable (if defined) was
21# saved in DL_DIR, so we can use that.
22ifneq ($(BUILDROOT_DL_DIR),)
23ifneq ($(BUILDROOT_DL_DIR),$(DL_DIR))
24$(error "The BUILDROOT_DL_DIR environment variable was renamed to BR2_DL_DIR.")
25endif
26endif
27
af97c94b
AV
28# If a script is using the deprecated BUILDROOT_CONFIG, make sure it fails.
29# Add some directories in front just in case someone used dirname on it.
30BUILDROOT_CONFIG_FAKE = /tmp/deprecated/The-BUILDROOT_CONFIG-environment-variable-was-renamed-to-BR2_CONFIG
31
4113b3c3
AV
32# Similar to above for BUILDROOT_CONFIG, but here we have no .config equivalent.
33ifneq ($(BUILDROOT_CONFIG),)
34ifneq ($(BUILDROOT_CONFIG),$(BR2_CONFIG))
af97c94b 35ifneq ($(BUILDROOT_CONFIG),$(BUILDROOT_CONFIG_FAKE))
4113b3c3
AV
36$(error "The BUILDROOT_CONFIG environment variable was renamed to BR2_CONFIG.")
37endif
38endif
af97c94b 39endif
4113b3c3 40
af97c94b 41BUILDROOT_CONFIG = $(BUILDROOT_CONFIG_FAKE)
4113b3c3
AV
42export BUILDROOT_CONFIG
43
be2460c5
AVEM
44#
45# Legacy options from 2012.08
46#
47
48host-pkg-config:
49 @$(call MESSAGE,host-pkg-config is replaced by host-pkgconf)
50 @$(call MESSAGE,please update your .mk files)
51 @false
52.PHONY: host-pkg-config
53
cc1cd3b2
AVEM
54#
55# Legacy options from 2012.05
56#
57GENTARGETS = $$(error The GENTARGETS macro no longer exists; use $$$$(eval $$$$(generic-package)) or $$$$(eval $$$$(host-generic-package)))
58AUTOTARGETS = $$(error The AUTOTARGETS macro no longer exists; use $$$$(eval $$$$(autotools-package)) or $$$$(eval $$$$(host-autotools-package)))
59CMAKETARGETS = $$(error The CMAKETARGETS macro no longer exists; use $$$$(eval $$$$(cmake-package)) or $$$$(eval $$$$(host-cmake-package)))
This page took 0.691366 seconds and 4 git commands to generate.