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"
精彩评论