mirror of
				https://github.com/physwizz/a155-U-u1.git
				synced 2025-10-28 16:15:46 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2015 MediaTek Inc.
 | 
						|
#
 | 
						|
# This program is free software: you can redistribute it and/or modify
 | 
						|
# it under the terms of the GNU General Public License version 2 as
 | 
						|
# published by the Free Software Foundation.
 | 
						|
#
 | 
						|
# This program is distributed in the hope that it will be useful,
 | 
						|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 | 
						|
# GNU General Public License for more details.
 | 
						|
#
 | 
						|
 | 
						|
#
 | 
						|
# for USB OTG silicon based on Mentor Graphics INVENTRA designs
 | 
						|
#
 | 
						|
ccflags-y += -I$(srctree)/drivers/misc/mediatek/usb20
 | 
						|
 | 
						|
# for battery related
 | 
						|
ccflags-y += -I$(srctree)/drivers/misc/mediatek/include/mt-plat
 | 
						|
 | 
						|
# for SPM control usage
 | 
						|
ccflags-y += -I$(srctree)/drivers/misc/mediatek/base/power/include/
 | 
						|
 | 
						|
# for TYPEC connection management
 | 
						|
ccflags-y += -I$(srctree)/drivers/misc/mediatek/typec/inc
 | 
						|
ifeq ($(CONFIG_TCPC_CLASS),y)
 | 
						|
	ccflags-y += -I$(srctree)/drivers/misc/mediatek/typec/tcpc/inc
 | 
						|
endif
 | 
						|
# for ep0 test
 | 
						|
ccflags-y += -I$(srctree)/drivers/usb/core/
 | 
						|
ccflags-y += -I$(srctree)/drivers/misc/mediatek/usb20
 | 
						|
 | 
						|
 | 
						|
obj-$(CONFIG_USB_MTK_HDRC) += musb_main.o
 | 
						|
musb_main-y := musb.o
 | 
						|
 |