mirror of
				https://github.com/ossrs/srs.git
				synced 2025-03-09 15:49:59 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			206 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			206 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/bin/bash
 | 
						|
# genereate the library header file.
 | 
						|
 | 
						|
objs=$1
 | 
						|
 | 
						|
rm -f $objs/include/srs_librtmp.h &&
 | 
						|
cp $objs/../src/libs/srs_librtmp.hpp $objs/include/srs_librtmp.h
 | 
						|
echo "genereate srs-librtmp headers success"
 |