Using curly brackets for variable expansion in makefile doesn't work
Make uses old-school Bourne shell (/bin/sh) by default which does not support brace expansion. Set the SHELL variable in your makefile to /bin/bash if it's not already set.
Just add a line in the top of your makefile with:
SHELL=/usr/bin/bash
(please confirm your bash path).