20 lines
		
	
	
		
			641 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			641 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #	$NetBSD: Makefile.inc,v 1.8 2009/01/04 17:54:29 pooka Exp $
 | |
| 
 | |
| .if defined(LIB) && (${LIB} == "kern" || ${LIB} == "c" || ${LIB} == "pthread" \
 | |
| 	|| ${LIB} == "rump" || (defined(__MINIX) && ${LIB} == "sys"))
 | |
| 
 | |
| 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 defined(LIB) && (${LIB} == "c" || ${LIB} == "pthread")
 | |
| 
 | |
| SRCS+=	atomic_init_testset.c
 | |
| SRCS+=	atomic_cas_up.S
 | |
| CPPFLAGS+= -D__HAVE_ASM_ATOMIC_CAS_UP
 | |
| 
 | |
| .endif
 | 
