This commit finalizes support for cross compilation. The tools directory are all links to the actual tools and are built on the host system to build Minix. build.sh is the work horse that takes care of all environment settings. It's slightly adjusted for Minix. The /usr/src/Makefile has additional targets needed for cross compilation.
		
			
				
	
	
		
			19 lines
		
	
	
		
			336 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			336 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#	$NetBSD: configure.ac,v 1.3 2003/07/26 20:24:00 salo Exp $
 | 
						|
#
 | 
						|
# Autoconf definition file for mkdep.
 | 
						|
#
 | 
						|
 | 
						|
AC_INIT([mkdep], [noversion], [tech-toolchain@NetBSD.org])
 | 
						|
 | 
						|
AC_PATH_PROG(BSHELL, sh, )
 | 
						|
if test x"$BSHELL" = x; then
 | 
						|
	AC_MSG_ERROR([sh must be somewhere on \$PATH])
 | 
						|
fi
 | 
						|
 | 
						|
AC_CONFIG_FILES(host-mkdep)
 | 
						|
 | 
						|
AC_PROG_AWK
 | 
						|
AC_PROG_CPP
 | 
						|
 | 
						|
AC_OUTPUT
 |