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.
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#	$NetBSD: Makefile.inc,v 1.10 2009/12/14 00:38:59 matt Exp $
 | 
						|
 | 
						|
.if defined(LIB) && (${LIB} == "kern" || ${LIB} == "c" || ${LIB} == "pthread" \
 | 
						|
	|| ${LIB} == "rump")
 | 
						|
 | 
						|
.if ${MACHINE_ARCH:Mmips64*} == ""
 | 
						|
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 \
 | 
						|
	atomic_add_64_cas.c atomic_add_64_nv_cas.c \
 | 
						|
	atomic_and_64_cas.c atomic_and_64_nv_cas.c \
 | 
						|
	atomic_dec_64_cas.c atomic_dec_64_nv_cas.c \
 | 
						|
	atomic_inc_64_cas.c atomic_inc_64_nv_cas.c \
 | 
						|
	atomic_or_64_cas.c atomic_or_64_nv_cas.c \
 | 
						|
	atomic_swap_64_cas.c
 | 
						|
 | 
						|
CPPFLAGS+= -D__HAVE_ASM_ATOMIC_CAS_UP
 | 
						|
 | 
						|
.else
 | 
						|
SRCS+=	atomic_add.S atomic_dec.S atomic_inc.S
 | 
						|
SRCS+=	atomic_and.S atomic_or.S
 | 
						|
SRCS+=	atomic_swap.S
 | 
						|
.endif
 | 
						|
 | 
						|
SRCS+=	membar_ops.S
 | 
						|
.endif
 | 
						|
 | 
						|
.if defined(LIB) && (${LIB} == "c" || ${LIB} == "pthread")
 | 
						|
 | 
						|
.if ${MACHINE_ARCH:Mmips64*} == ""
 | 
						|
SRCS+=	atomic_init_testset.c atomic_cas_up.S
 | 
						|
.else
 | 
						|
SRCS+=	atomic_cas.S atomic_init_cas.c
 | 
						|
.endif
 | 
						|
 | 
						|
.endif
 | 
						|
 | 
						|
.if defined(LIB) && (${LIB} == "kern" || ${LIB} == "rump")
 | 
						|
 | 
						|
SRCS+=	membar_ops.S
 | 
						|
 | 
						|
.endif
 |