When I run below command on shell, it works properly. but if I write it in a Makefile and call it with "make" command it doesn't work.
cp wpa_{cli,supplicant,passphrase,event} /usr/local/bin/
error after "make" command:
cp: cannot stat `wpa_{cli,supplicant,passphrase,event}': No such file or directory
What can i do to make it work with Makefile? I use Ubuntu 12.04. Same Makefile works on other linux distributions.
SHELL=/bin/bash
as the first line? – Parette