forked from Bananymous/banan-os
				
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			351 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			351 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/bash ../install.sh
 | |
| 
 | |
| NAME='make'
 | |
| VERSION='4.4.1'
 | |
| DOWNLOAD_URL="https://ftpmirror.gnu.org/gnu/make/make-$VERSION.tar.gz#dd16fb1d67bfab79a72f5e8390735c49e3e8e70b4945a15ab1f81ddb78658fb3"
 | |
| CONFIG_SUB=('build-aux/config.sub')
 | |
| CONFIGURE_OPTIONS=(
 | |
| 	'--with-sysroot=/'
 | |
| 	'--disable-nls'
 | |
| 	'--disable-posix-spawn'
 | |
| 	'--enable-year2038'
 | |
| 	'CFLAGS=-std=c17'
 | |
| )
 |