
This brings our tree to NetBSD 7.0, as found on -current on the 10-10-2015. This updates: - LLVM to 3.6.1 - GCC to GCC 5.1 - Replace minix/commands/zdump with usr.bin/zdump - external/bsd/libelf has moved to /external/bsd/elftoolchain/ - Import ctwm - Drop sprintf from libminc Change-Id: I149836ac18e9326be9353958bab9b266efb056f0
26 lines
685 B
Makefile
26 lines
685 B
Makefile
# $NetBSD: Makefile,v 1.35 2014/08/10 23:25:49 matt Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.if defined(__MINIX)
|
|
USE_BITCODE:= no
|
|
.endif # defined(__MINIX)
|
|
|
|
CSU_MACHINE_ARCH?= ${MACHINE_ARCH}
|
|
CSU_MACHINE_CPU?= ${MACHINE_CPU}
|
|
|
|
.if !empty(CSU_MACHINE_ARCH:Mearm*)
|
|
ARCHDIR:= ${.CURDIR}/arch/earm
|
|
.elif exists(${.CURDIR}/arch/${CSU_MACHINE_ARCH}/Makefile.inc)
|
|
ARCHDIR:= ${.CURDIR}/arch/${CSU_MACHINE_ARCH}
|
|
.elif exists(${.CURDIR}/arch/${CSU_MACHINE_CPU}/Makefile.inc)
|
|
ARCHDIR:= ${.CURDIR}/arch/${CSU_MACHINE_CPU}
|
|
.else
|
|
.error Architecture (${CSU_MACHINE_ARCH} or ${CSU_MACHINE_CPU}) unsupported
|
|
.endif
|
|
|
|
|
|
.PATH: ${ARCHDIR}
|
|
.include "${ARCHDIR}/Makefile.inc"
|
|
.include "${.CURDIR}/common/Makefile.inc"
|