How to check whether GNU Make supports Guile
问题 How to check from the command line whether GNU Make is built with support of Guile? Inside Makefile it can be determined via analyzing .FEATURES variable (see documentation). 回答1: As @ruvim points out, the manual says You can determine whether GNU Guile support is available by checking the .FEATURES variable for the word guile . $(if $(filter guile,${.FEATURES}) \ ,$(info Guile suppoerted, yay!) \ ,$(error Guile not supported - update your make)) 回答2: One possible way is a quasi makefile in