I'm using the make tool, and I'd like to be able to pass in command line arguments to it. I tried this:
$ node Makefile.js client-test -- foo.js
no such target: --
no such target: foo
It seems that all parameters are treated as potential targets. Would it be possible to use -- as a delimiter to pass in command line arguments?