Make does not use bash. Make uses whatever shell is pointed to by the SHELL env variable. If you don't pass any, it defaults to sh.
Meanwhile, you can use Python in a Makefile for what it's worth.
https://www.gnu.org/software/make/manual/html_node/Choosing-...
Make does not use bash. Make uses whatever shell is pointed to by the SHELL env variable. If you don't pass any, it defaults to sh.
Meanwhile, you can use Python in a Makefile for what it's worth.
https://www.gnu.org/software/make/manual/html_node/Choosing-...