On Linux, we have a make file:
$(foreach A,ab,echo $(A) &&) true
It works and echoes
a b
Now we want to transfer it to Windows. The shortest command for Windows that does nothing:
if 0==1 0
Thus, an example make file will look
$(foreach A,ab,echo $(A) &&) if 0==1 0
Is there any fictitious command in the window on Windows (which really does nothing)? Or some good hack?
artyom.stv
source share