e9d8fda02c
sub-directory. This to allow simpler logic outside of the csu directory. Obtained from: Juniper Networks, Inc.
11 lines
167 B
Makefile
11 lines
167 B
Makefile
# $FreeBSD$
|
|
|
|
ARCH= ${MACHINE_ARCH:S/i386/i386-elf/}
|
|
.if exists(${.CURDIR}/${ARCH})
|
|
SUBDIR+= ${ARCH}
|
|
.else
|
|
SUBDIR+= ${MACHINE_CPUARCH}
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|