]> CyberLeo.Net >> Repos - FreeBSD/releng/10.3.git/blob - contrib/bmake/unit-tests/doterror.mk
- Copy stable/10@296371 to releng/10.3 in preparation for 10.3-RC1
[FreeBSD/releng/10.3.git] / contrib / bmake / unit-tests / doterror.mk
1 # $Id: doterror.mk,v 1.1.1.1 2014/08/30 18:57:18 sjg 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
13 all:    happy sad
14
15 happy:
16         @echo $@
17
18 sad:
19         @echo and now: $@; exit 1
20