 2635038e5c
			
		
	
	
		2635038e5c
		
	
	
	
	
		
			
			This patch includes the required modifications (summarized in common/lib/libc/minix-port.patch) to make the common part of the NetBSD libc to compile and work under Minix.
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # $NetBSD: Makefile.inc,v 1.10 2008/10/26 07:22:50 mrg Exp $
 | |
| 
 | |
| COMMON_DIR:=${.PARSEDIR}
 | |
| .if defined(__MINIX)
 | |
| COMMON_CODEDIRS=atomic gen inet md net quad stdlib string 
 | |
| .else
 | |
| COMMON_CODEDIRS=atomic gen gmon inet md net quad stdlib string sys
 | |
| .endif
 | |
| COMMON_CODEDIRS+=hash/sha1 hash/sha2 hash/rmd160
 | |
| 
 | |
| .if defined(COMMON_MACHINE_ARCH) && !empty(COMMON_MACHINE_ARCH) && \
 | |
|     exists(${COMMON_DIR}/arch/${COMMON_MACHINE_ARCH})
 | |
| COMMON_ARCHSUBDIR=	${COMMON_MACHINE_ARCH}
 | |
| .elif defined(LIBKERN_ARCH) && !empty(LIBKERN_ARCH) && \
 | |
|     exists(${KERNDIR}/arch/${LIBKERN_ARCH})
 | |
| COMMON_ARCHSUBDIR=	${LIBKERN_ARCH}
 | |
| .elif exists(${COMMON_DIR}/arch/${MACHINE_ARCH})
 | |
| COMMON_ARCHSUBDIR=	${MACHINE_ARCH}
 | |
| .elif exists(${COMMON_DIR}/arch/${MACHINE_CPU})
 | |
| COMMON_ARCHSUBDIR=	${MACHINE_CPU}
 | |
| .endif
 | |
| 
 | |
| COMMON_ARCHDIR=${COMMON_DIR}/arch/${COMMON_ARCHSUBDIR}
 | |
| 
 | |
| .for i in ${COMMON_CODEDIRS}
 | |
| .if exists(${COMMON_DIR}/$i)
 | |
| .PATH.c: ${COMMON_DIR}/$i
 | |
| .endif
 | |
| .if exists(${COMMON_ARCHDIR}/${i}/Makefile.inc)
 | |
| .include "${COMMON_ARCHDIR}/${i}/Makefile.inc"
 | |
| .endif
 | |
| .if exists(${COMMON_ARCHDIR}/$i)
 | |
| .PATH.c: ${COMMON_ARCHDIR}/$i
 | |
| .PATH.S: ${COMMON_ARCHDIR}/$i
 | |
| .endif
 | |
| .endfor
 | |
| 
 | |
| CPPFLAGS+=-I${COMMON_DIR}/quad -I${COMMON_DIR}/string
 | |
| .if defined(COMMON_ARCHSUBDIR)
 | |
| CPPFLAGS+=-I${COMMON_ARCHDIR}/string
 | |
| .endif
 |