repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libexec exec fix
[minix.git]
/
usr.bin
/
make
/
unit-tests
/
doterror
blob
ec63321c83f566a6a7b37b3807491170508c5bb3
1
# $Id: doterror,v 1.1 2010/04/08 17:41:29 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