开发者

How to print message(s) at the end of configure/make?

I'm trying to setup a software package with GNU autotools and would like for a message "Build successful!" to be outputted after a user has run make (after c开发者_StackOverflow中文版onfigure). How would I implement such a feature? Thanks


There is no clean way of doing it. You can add a printout to the top-level make target:

all:
       $(MAKE) ... && echo "Build succeeded"
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜