-1
我是新來的makefile stuff.I想運行一個for循環,但我陷入了一個錯誤。代碼和錯誤在下面給出。makefile中的forloop問題
LIST = one two three
qwert:
for number in $(LIST) ; do \
echo $$number ; \
done
錯誤:
number was unexpected this time
make: ***[qwert] Error 255
問題是什麼,如何解決這個問題???
錯誤消息看起來像'cmd.exe'。你的代碼很好,只需使用正確的shell。 – tripleee 2015-03-25 06:24:59
@tripleee:我不明白..正確的殼意味着 – Vineeth 2015-03-25 06:27:20
Bash,可能。一個普通的'make'應該運行'sh',即使它不是你的首選shell,所以這部分顯然是錯誤的。但是你對平臺或Make版本的瞭解很少,所以這一定是相當投機的。 – tripleee 2015-03-25 06:31:08