mirror of
https://github.com/opnsense/src.git
synced 2026-02-26 11:20:29 -05:00
19 lines
249 B
Makefile
19 lines
249 B
Makefile
# $NetBSD: doterror.mk,v 1.3 2023/06/01 20:56:35 rillig 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
|