mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 01:20:04 -04:00
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
# $NetBSD: Makefile.inc,v 1.7 2014/10/12 17:53:33 martin Exp $
|
|
|
|
.if defined(LIB) && (${LIB} == "kern" || ${LIB} == "c" || ${LIB} == "pthread" \
|
|
|| ${LIB} == "rump")
|
|
|
|
SRCS+= atomic_add_32_cas.c atomic_add_32_nv_cas.c atomic_and_32_cas.c \
|
|
atomic_and_32_nv_cas.c atomic_dec_32_cas.c atomic_dec_32_nv_cas.c \
|
|
atomic_inc_32_cas.c atomic_inc_32_nv_cas.c atomic_or_32_cas.c \
|
|
atomic_or_32_nv_cas.c atomic_swap_32_cas.c membar_ops_nop.c
|
|
|
|
.if ${LIB} == "c"
|
|
SRCS+= atomic_add_16_cas.c atomic_add_8_cas.c \
|
|
atomic_sub_32_cas.c atomic_sub_16_cas.c atomic_sub_8_cas.c \
|
|
atomic_or_16_cas.c atomic_or_8_cas.c \
|
|
atomic_xor_32_cas.c atomic_xor_16_cas.c atomic_xor_8_cas.c \
|
|
atomic_and_16_cas.c atomic_and_8_cas.c \
|
|
atomic_nand_32_cas.c atomic_nand_16_cas.c atomic_nand_8_cas.c \
|
|
atomic_cas_32_cas.c atomic_cas_16_cas.c atomic_cas_8_cas.c \
|
|
atomic_swap_16_cas.c atomic_swap_8_cas.c \
|
|
atomic_c11_compare_exchange_cas_32.c \
|
|
atomic_c11_compare_exchange_cas_16.c \
|
|
atomic_c11_compare_exchange_cas_8.c
|
|
.endif
|
|
|
|
.endif
|
|
|
|
.if defined(LIB) && (${LIB} == "c" || ${LIB} == "pthread")
|
|
|
|
SRCS+= atomic_init_testset.c
|
|
|
|
.endif
|