【发布时间】:2010-10-21 14:43:32
【问题描述】:
a:
@echo 1
b:
@echo 2
c:
@if [ ! -d somefolder ]; \
then \
# how do I invoke target b here?
fi;
如何根据我的情况在目标c 内调用目标b?有点像 antcall,如果你熟悉 ant。
【问题讨论】:
标签: makefile
a:
@echo 1
b:
@echo 2
c:
@if [ ! -d somefolder ]; \
then \
# how do I invoke target b here?
fi;
如何根据我的情况在目标c 内调用目标b?有点像 antcall,如果你熟悉 ant。
【问题讨论】:
标签: makefile
只要说make b
【讨论】: