2017-04-25 21:34:22 -04: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 08:04:51 -04:00
|
|
|
ifneq ($(findstring undefine,$(.FEATURES)),)
|
2017-04-25 21:34:22 -04: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 08:04:51 -04:00
|
|
|
endif
|
2017-04-25 21:34:22 -04:00
|
|
|
|
2020-01-25 15:04:11 -05:00
|
|
|
include mpy-cross.mk
|