2017-04-26 11:34:22 +10:00
|
|
|
# The following is a temporary hack to forefully undefine vars that might have
|
|
|
|
# be defined by a calling Makefile (from recursive make).
|
|
|
|
# TODO: Find a better way to be able to call this Makefile recursively.
|
2017-05-25 22:04:51 +10:00
|
|
|
ifneq ($(findstring undefine,$(.FEATURES)),)
|
2017-04-26 11:34:22 +10:00
|
|
|
override undefine COPT
|
|
|
|
override undefine CFLAGS_EXTRA
|
|
|
|
override undefine LDFLAGS_EXTRA
|
|
|
|
override undefine FROZEN_DIR
|
|
|
|
override undefine FROZEN_MPY_DIR
|
|
|
|
override undefine BUILD
|
|
|
|
override undefine PROG
|
2017-05-25 22:04:51 +10:00
|
|
|
endif
|
2017-04-26 11:34:22 +10:00
|
|
|
|
2020-01-25 14:04:11 -06:00
|
|
|
include mpy-cross.mk
|