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.
		
			
				
	
	
		
			24 lines
		
	
	
		
			710 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			710 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#	$NetBSD: Makefile.inc,v 1.11 2009/12/06 05:34:42 uebayasi Exp $
 | 
						|
#	@(#)Makefile.inc	8.1 (Berkeley) 6/4/93
 | 
						|
 | 
						|
# Quad support
 | 
						|
SRCS.quad=	cmpdi2.c divdi3.c fixdfdi.c fixsfdi.c fixunsdfdi.c \
 | 
						|
	fixunssfdi.c floatdidf.c floatdisf.c floatunsdidf.c \
 | 
						|
	moddi3.c muldi3.c negdi2.c qdivrem.c \
 | 
						|
	ucmpdi2.c udivdi3.c umoddi3.c 
 | 
						|
 | 
						|
.if   (${MACHINE_ARCH} == "m68k")
 | 
						|
SRCS.quad+=	ashldi3.S ashrdi3.S lshrdi3.S
 | 
						|
.elif (${MACHINE_ARCH} == "m68000")
 | 
						|
SRCS.quad+=	ashldi3.S lshrdi3.S
 | 
						|
.else
 | 
						|
SRCS.quad+=	ashldi3.c ashrdi3.c lshrdi3.c
 | 
						|
.endif
 | 
						|
 | 
						|
# XXX as far as I can tell, these are never used and can be removed
 | 
						|
SRCS.quad+=	adddi3.c anddi3.c iordi3.c notdi2.c subdi3.c xordi3.c
 | 
						|
 | 
						|
SRCS+=	${SRCS.quad}
 | 
						|
 | 
						|
.PATH: ${ARCHDIR}/quad ${.CURDIR}/quad
 |