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