Subject: | Action exceution not aborted on failures |
In a traditional Makefile the following would not print the message "should not happen":
all:
false
echo should not happen
In a SlayMakefile however, execution of actions is not aborted if any of the actions fails. This behavior is at least surprising; and it makes it more difficult to write robust makefiles.