mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
b379932fc0
Submitted by: sjg@juniper.net
21 lines
244 B
Plaintext
21 lines
244 B
Plaintext
# $Id: doterror,v 1.1.1.1 2010/04/08 17:43:00 sjg 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
|
|
|