1
0
Files
irix-657m-src/eoe/cmd/pmake/tests/stop.test
2022-09-29 17:59:04 +03:00

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