mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-09 20:40:13 -04:00
21 lines
246 B
Plaintext
21 lines
246 B
Plaintext
# $Id: doterror,v 1.1.1.1 2010/04/20 13:32:42 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
|
|
|