blob: 6d3b5a9f52c8aed07188bae6ef3a615139856642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# $OpenBSD: mk28,v 1.1 2008/11/24 16:22:38 espie Exp $
# checks that hex constants evaluate correctly
# (bug from NetBSD)
B=222
.if $B == 0xDE
A=0
.else
A=1
.endif
all:
@exit $A
.PHONY: all
|