After building something with make I want to move all the files that end in .cache.{js,woff} to a sub folder.
(cd $(PFROOT)/PVWR2/gwt/pdfwebviewer/; \ mkdir -p cache_files; \ mv *.cache.{js,woff} sub_folder) The problem is, when running make it seems to interpret *.cache.{js,woff} as a file name and not something dynamic and of course there is no file that has the explicit name *.cache.{js,woff}. When I just navigate to the folder and move it manually from the shell with above command it works without a hitch.
I understand it has to do with globbing but I don't know how to fix this.