summaryrefslogtreecommitdiff
path: root/devel/bmake/files/unit-tests/doterror.mk
blob: 24983c0db6bb1bcf1b8a77788cc683918099d10a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# $Id: doterror.mk,v 1.1.1.1 2015/05/19 21:36:45 joerg Exp $


.BEGIN:
	@echo At first, I am

.END:
	@echo not reached

.ERROR:
	@echo "$@: Looks like '${.ERROR_TARGET}' is upset."

all:	happy sad

happy:
	@echo $@

sad:
	@echo and now: $@; exit 1