0
a:
@echo 1
b:
@echo 2
c:
@if [ ! -d somefolder ]; \
then \
# how do I invoke target b here?
fi;
根據我的情況,如何根據目標c
調用目標b
?有點像antcall
,如果你熟悉螞蟻。如何從我的makefile調用特定的目標?
a:
@echo 1
b:
@echo 2
c:
@if [ ! -d somefolder ]; \
then \
# how do I invoke target b here?
fi;
根據我的情況,如何根據目標c
調用目標b
?有點像antcall
,如果你熟悉螞蟻。如何從我的makefile調用特定的目標?
就這麼說吧make b