xref: /netbsd-src/usr.bin/make/unit-tests/doterror.mk (revision 70f7362772ba52b749c976fb5e86e39a8b2c9afc)
1# $NetBSD: doterror.mk,v 1.3 2023/06/01 20:56:35 rillig Exp $
2
3
4.BEGIN:
5	@echo At first, I am
6
7.END:
8	@echo not reached
9
10.ERROR:
11	@echo "$@: Looks like '${.ERROR_TARGET}' is upset."
12
13all:	happy sad
14
15happy:
16	@echo $@
17
18sad:
19	@echo and now: $@; exit 1
20