Why does this print: bye hello ? test.mk:
define test_impl
ifeq (hello,bye)
$(info bye)
else
$(info hello)
endif
endef
test = $(eval $(call test_impl))
$(call test)
all:
% make -f test.mk
This is GNU make 3.81.
-Dave
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make
