Add the .C versions for the atomic ops.

This commit is contained in:
matt 2008-02-03 07:46:38 +00:00
parent 0dd140599f
commit 350555cd1f
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
# $NetBSD: Makefile.inc,v 1.1 2008/02/03 07:46:38 matt Exp $
.if defined(LIB) && (${LIB} == "kern")
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
.endif