The headers and footers are used to integrate Doxygen into Libav's website. Fixes the Libav-ish look when doing `make apidoc`. Signed-off-by: Timothy Gu <timothygu99@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
		
			
				
	
	
		
			12 lines
		
	
	
		
			124 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			124 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
SRC_PATH="${1}"
 | 
						|
DOXYFILE="${2}"
 | 
						|
 | 
						|
shift 2
 | 
						|
 | 
						|
doxygen - <<EOF
 | 
						|
@INCLUDE        = ${DOXYFILE}
 | 
						|
INPUT           = $@
 | 
						|
EOF
 |