Makefile.inc revision 1.5
1#	$NetBSD: Makefile.inc,v 1.5 2008/09/29 08:43:00 ad Exp $
2
3.if defined(LIB) && (${LIB} == "kern" || ${LIB} == "c" || ${LIB} == "pthread")
4
5SRCS+=	atomic_add.S atomic_and.S atomic_cas.S atomic_dec.S \
6	atomic_inc.S atomic_or.S atomic_swap.S membar_ops.S
7
8.endif
9
10.if defined(LIB) && (${LIB} == "c" || ${LIB} == "pthread")
11
12SRCS+=	atomic_init_cas.c
13
14.endif
15