Move the console functions definitions out from lib/b64_decode code to a dedicated directory. Signed-off-by: Anna Karas <aka@semihalf.com> Change-Id: I22a6a592f0d4d509f19920f4ad2b18e8ed83a03e Reviewed-on: https://review.coreboot.org/c/coreboot/+/43285 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Fagerburg <pfagerburg@chromium.org> Reviewed-by: Julius Werner <jwerner@chromium.org>
		
			
				
	
	
		
			16 lines
		
	
	
		
			447 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			447 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # SPDX-License-Identifier: GPL-2.0-only
 | |
| 
 | |
| tests-y += string-test
 | |
| tests-y += b64_decode-test
 | |
| tests-y += hexstrtobin-test
 | |
| 
 | |
| string-test-srcs += tests/lib/string-test.c
 | |
| string-test-srcs += src/lib/string.c
 | |
| 
 | |
| b64_decode-test-srcs += tests/lib/b64_decode-test.c
 | |
| b64_decode-test-srcs += tests/stubs/console.c
 | |
| b64_decode-test-srcs += src/lib/b64_decode.c
 | |
| 
 | |
| hexstrtobin-test-srcs += tests/lib/hexstrtobin-test.c
 | |
| hexstrtobin-test-srcs += src/lib/hexstrtobin.c
 |