>
> error-t:
>    @echo "E R R O R";\
>    $(error error-message)
>

You're mis-using $(error) here. $(error) is MAKE code, not SHELL code, and
therefore belongs in the MAKE parts of the makefile. e.g.

ifneq (0,1)
$(error ...)
endif


-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to