25faff346c
Prefer MACHNE_CPUARCH to MACHINE_ARCH in most contexts where you want to test of all the CPUs of a given family conform.
10 lines
117 B
Makefile
10 lines
117 B
Makefile
# $FreeBSD$
|
|
|
|
PROG?= ldd
|
|
SRCS= ldd.c
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
SRCS+= sods.c
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|