
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
31 lines
661 B
Makefile
31 lines
661 B
Makefile
# $NetBSD: Makefile.inc,v 1.2 2014/10/16 18:52:17 dennis Exp $
|
|
|
|
.for op in add and cas nand or sub swap xor
|
|
sizes=32
|
|
.if "${MLIBDIR}" != ""
|
|
.if ${COMMON_MACHINE_ARCH} == "riscv64"
|
|
sizes+=64
|
|
.endif
|
|
.elif ${MACHINE_ARCH} == "riscv64"
|
|
sizes+=64
|
|
.endif
|
|
.for sz in ${sizes}
|
|
SRCS.atomic+= atomic_${op}_${sz}.S
|
|
.endfor
|
|
.for sz in 8 16
|
|
SRCS.atomic+= atomic_${op}_${sz}_cas.c
|
|
.endfor
|
|
.endfor
|
|
SRCS.atomic+= membar_ops.S
|
|
SRCS.atomic+= atomic_cas_by_cas32.c
|
|
|
|
.if defined(LIB) && (${LIB} != "kern" && ${LIB} != "rump")
|
|
|
|
SRCS.atomic+= atomic_init_cas.c \
|
|
atomic_c11_compare_exchange_cas_16.c \
|
|
atomic_c11_compare_exchange_cas_8.c
|
|
|
|
.endif #LIB
|
|
|
|
SRCS+= ${SRCS.atomic}
|