aboutsummaryrefslogblamecommitdiff
path: root/contrib/bmake/unit-tests/cond-op-not.mk
blob: ad0a0939eecfef21f9a44c5b7deed0ae3c6d3e2a (plain) (tree)





















                                                                
# $NetBSD: cond-op-not.mk,v 1.3 2020/08/28 14:48:37 rillig Exp $
#
# Tests for the ! operator in .if conditions.

# The exclamation mark negates its operand.
.if !1
.error
.endif

# Exclamation marks can be chained.
# This doesn't happen in practice though.
.if !!!1
.error
.endif

# The ! binds more tightly than the &&.
.if !!0 && 1
.error
.endif

all:
	@:;