diff --git a/interpreters/quickjs/Makefile b/interpreters/quickjs/Makefile index 6b1f89a90..d4b8ac4c3 100644 --- a/interpreters/quickjs/Makefile +++ b/interpreters/quickjs/Makefile @@ -78,13 +78,13 @@ $(QUICKJS_UNPACK)/.patch: $(QUICKJS_UNPACK) $(Q) touch $(QUICKJS_UNPACK)/.patch build_host: $(QUICKJS_UNPACK)/.patch - make -C $(QUICKJS_UNPACK) \ + $(MAKE) -C $(QUICKJS_UNPACK) \ CONFIG_BIGNUM=$(CONFIG_INTERPRETERS_QUICKJS_BIGNUM) context:: build_host clean:: - $(Q) test ! -d $(QUICKJS_UNPACK) || make -C $(QUICKJS_UNPACK) clean + $(Q) test ! -d $(QUICKJS_UNPACK) || $(MAKE) -C $(QUICKJS_UNPACK) clean distclean:: $(call DELDIR, $(QUICKJS_UNPACK))