mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
	
	
		
			26 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			26 lines
		
	
	
	
		
			537 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
|  | #!/bin/bash
 | ||
|  | # | ||
|  | # this should be run from the subsurface directory | ||
|  | 
 | ||
|  | if [ ! -d libdivecomputer/src ] ; then | ||
|  | 	git submodule init | ||
|  | 	git submodule update --recursive | ||
|  | fi | ||
|  | 
 | ||
|  | mkdir -p libdivecomputer/build | ||
|  | cd libdivecomputer/build | ||
|  | 
 | ||
|  | if [ ! -f ../configure ] ; then | ||
|  | 	# this is not a typo | ||
|  | 	# in some scenarios it appears that autoreconf doesn't copy the | ||
|  | 	# ltmain.sh file; running it twice, however, fixes that problem | ||
|  | 	autoreconf --install .. | ||
|  | 	autoreconf --install .. | ||
|  | fi | ||
|  | 
 | ||
|  | ../configure --disable-examples --prefix=$INSTALL_ROOT | ||
|  | 
 | ||
|  | 
 | ||
|  | make -j4 | ||
|  | make install |