Since Makefile basically is shell script, you can use watever commandline-fu you learned. There is one thing to consider though: for loops.
for i in $(my-src-files) do; echo $$i >> $(my-dest-file); done
It takes me couple of hours to realize that one must use $$i when referencing loop variable instead of just $i like in plain shell scripts.