]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bmake/unit-tests/error.mk
Merge bmake-20201117
[FreeBSD/FreeBSD.git] / contrib / bmake / unit-tests / error.mk
1 # $NetBSD: error.mk,v 1.3 2020/11/03 17:38:45 rillig Exp $
2 #
3 # Demonstrate that the .error directive exits immediately, without
4 # continuing parsing until the end of the file.
5
6 .info just FYI
7 .warning this could be serious
8 .error this is fatal
9 .info this is not reached because of the .error above
10
11 all:
12         : this is not reached because of the .error