I have a very simple makefile:
all:
@for i in 1 2 3;\
do \
echo "i: $$i";\
done
And yet when I run this, I got a "i was unexpected at this time" error.
Any idea why this is the case?
I am running on Windows XP. What's the Windows equivalent for the above script?