我正在尝试在 automake 中执行此操作
platform=$(uname)
ifeq ($(platform), Darwin)
stmt = ...
else
stmt1 = ...
endif
但我明白了
错误:否则没有if
错误:没有 if 的 endif
我究竟做错了什么?
我正在尝试在 automake 中执行此操作
platform=$(uname)
ifeq ($(platform), Darwin)
stmt = ...
else
stmt1 = ...
endif
但我明白了
错误:否则没有if
错误:没有 if 的 endif
我究竟做错了什么?