xref: /openbmc/u-boot/drivers/usb/gadget/Makefile (revision 0a4f88b98c098532bfe0a4a5f874e6e05708c4f3)
1#
2# (C) Copyright 2000-2007
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# SPDX-License-Identifier:	GPL-2.0+
6#
7
8include $(TOPDIR)/config.mk
9
10LIB	:= $(obj)libusb_gadget.o
11
12# if defined(CONFIG_USB_GADGET) || defined(CONFIG_USB_ETHER)
13#   Everytime you forget how crufty makefiles can get things like
14#   this remind you...
15ifneq (,$(CONFIG_USB_GADGET)$(CONFIG_USB_ETHER))
16COBJS-y += epautoconf.o config.o usbstring.o
17endif
18
19# new USB gadget layer dependencies
20ifdef CONFIG_USB_GADGET
21COBJS-$(CONFIG_USB_GADGET_ATMEL_USBA) += atmel_usba_udc.o
22COBJS-$(CONFIG_USB_GADGET_S3C_UDC_OTG) += s3c_udc_otg.o
23COBJS-$(CONFIG_USB_GADGET_FOTG210) += fotg210.o
24COBJS-$(CONFIG_THOR_FUNCTION) += f_thor.o
25COBJS-$(CONFIG_USBDOWNLOAD_GADGET) += g_dnl.o
26COBJS-$(CONFIG_DFU_FUNCTION) += f_dfu.o
27COBJS-$(CONFIG_USB_GADGET_MASS_STORAGE) += f_mass_storage.o
28endif
29ifdef CONFIG_USB_ETHER
30COBJS-y += ether.o
31COBJS-$(CONFIG_USB_ETH_RNDIS) += rndis.o
32COBJS-$(CONFIG_MV_UDC)	+= mv_udc.o
33COBJS-$(CONFIG_CPU_PXA25X) += pxa25x_udc.o
34else
35# Devices not related to the new gadget layer depend on CONFIG_USB_DEVICE
36ifdef CONFIG_USB_DEVICE
37COBJS-y += core.o
38COBJS-y += ep0.o
39COBJS-$(CONFIG_DW_UDC) += designware_udc.o
40COBJS-$(CONFIG_OMAP1510) += omap1510_udc.o
41COBJS-$(CONFIG_OMAP1610) += omap1510_udc.o
42COBJS-$(CONFIG_MPC885_FAMILY) += mpc8xx_udc.o
43COBJS-$(CONFIG_CPU_PXA27X) += pxa27x_udc.o
44endif
45endif
46
47COBJS	:= $(COBJS-y)
48SRCS	:= $(COBJS:.o=.c)
49OBJS	:= $(addprefix $(obj),$(COBJS))
50
51all:	$(LIB)
52
53$(LIB):	$(obj).depend $(OBJS)
54	$(call cmd_link_o_target, $(OBJS))
55
56#########################################################################
57
58# defines $(obj).depend target
59include $(SRCTREE)/rules.mk
60
61sinclude $(obj).depend
62
63#########################################################################
64