blob: 15622eec1ea5420235174b84d8721b6316090c53 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# $OpenBSD: mk1,v 1.2 2001/01/29 02:05:59 niklas Exp $
# invoke with make -r -e
# if it does NOT return the MACHINE_ARCH, it's buggy
MYARCH:= ${MACHINE_ARCH}
.if ${MACHINE_ARCH} != "alpha"
.endif
a:
@echo MACHINE_ARCH=${MACHINE_ARCH}
|