12 lines
297 B
Plaintext
12 lines
297 B
Plaintext
#
|
|
# Makefile to make sure pmake actually stops on an error.
|
|
#
|
|
.MAKEFLAGS: -J 1 # use no concurrency to force sequential evaluation.
|
|
a : c b
|
|
: This should not have been executed
|
|
b ::
|
|
: This should not have been executed
|
|
c ::
|
|
: This is meant to cause an error. nothing more should execute
|
|
false
|