b6cbf7203b
This patch imports the unmodified current version of NetBSD libc. The NetBSD includes are in /nbsd_include, while the libc code itself is split between lib/nbsd_libc and common/lib/libc.
23 lines
605 B
Makefile
23 lines
605 B
Makefile
# $NetBSD: Makefile.inc,v 1.8 2011/01/17 07:29:17 skrll Exp $
|
|
|
|
.if defined(LIB)
|
|
|
|
. if (${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
|
|
|
|
. endif
|
|
|
|
. if (${LIB} == "c" || ${LIB} == "pthread")
|
|
|
|
SRCS+= atomic_init_testset.c
|
|
SRCS+= atomic_cas_up.S
|
|
CPPFLAGS+= -D__HAVE_ASM_ATOMIC_CAS_UP
|
|
|
|
. endif
|
|
|
|
.endif
|