mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
20 lines
247 B
Makefile
20 lines
247 B
Makefile
# $Id: doterror.mk,v 1.1.1.1 2014/08/30 18:57:18 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
|
|
|