22 lines
		
	
	
		
			664 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			664 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# USB peripheral controller drivers
 | 
						|
#
 | 
						|
subdir-ccflags-$(CONFIG_USB_GADGET_DEBUG)	:= -DDEBUG
 | 
						|
subdir-ccflags-$(CONFIG_USB_GADGET_VERBOSE)	+= -DVERBOSE_DEBUG
 | 
						|
ccflags-y				+= -I$(srctree)/drivers/usb/gadget/udc -I$(srctree)/drivers/usb/gadget/function
 | 
						|
 | 
						|
obj-$(CONFIG_USB_LIBCOMPOSITE)	+= libcomposite.o
 | 
						|
libcomposite-y			:= usbstring.o config.o epautoconf.o
 | 
						|
libcomposite-y			+= composite.o functions.o configfs.o u_f.o
 | 
						|
 | 
						|
obj-y				+= debug.o
 | 
						|
g_android-y			:= android.o
 | 
						|
 | 
						|
obj-$(CONFIG_USB_GADGET)	+= udc/ function/ legacy/
 | 
						|
 | 
						|
obj-$(CONFIG_USB_G_ANDROID)	+= g_android.o
 | 
						|
 | 
						|
obj-$(CONFIG_USB_CI13XXX_MSM)	+= ci13xxx_msm.o
 | 
						|
 | 
						|
obj-$(CONFIG_USB_CI13XXX_MSM_HSIC)	+= ci13xxx_msm_hsic.o
 |