25 lines
		
	
	
		
			490 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			490 B
		
	
	
	
		
			Makefile
		
	
	
	
| #Copyright 2012 The Chromium Authors
 | |
| #
 | |
| # SPDX-License-Identifier:	GPL-2.0+
 | |
| #
 | |
| 
 | |
| obj-y += OpteeClientMem.o
 | |
| obj-y += OpteeClientApiLib.o
 | |
| obj-y += OpteeClientInterface.o
 | |
| obj-y += OpteeClientSMC.o
 | |
| obj-y += OpteeClientRPC.o
 | |
| obj-y += OpteeClientLoadTa.o
 | |
| obj-y += tee_smc-arm64.o
 | |
| obj-y += OpteeClientRkFs_common.o
 | |
| 
 | |
| ifdef CONFIG_OPTEE_V1
 | |
| obj-y += OpteeClientRkFs_v1.o
 | |
| obj-y += OpteeClientRkFs_v2.o
 | |
| endif
 | |
| 
 | |
| ifdef CONFIG_OPTEE_V2
 | |
| obj-y += OpteeClientRkNewFs_v1.o
 | |
| obj-y += OpteeClientRkNewFs_v2.o
 | |
| endif
 | |
| 
 |