xref: /openbmc/u-boot/drivers/usb/gadget/Makefile (revision 03efcb05)
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_S3C_UDC_OTG) += s3c_udc_otg.o
22COBJS-$(CONFIG_USB_GADGET_FOTG210) += fotg210.o
23COBJS-$(CONFIG_USBDOWNLOAD_GADGET) += g_dnl.o
24COBJS-$(CONFIG_DFU_FUNCTION) += f_dfu.o
25endif
26ifdef CONFIG_USB_ETHER
27COBJS-y += ether.o
28COBJS-$(CONFIG_USB_ETH_RNDIS) += rndis.o
29COBJS-$(CONFIG_MV_UDC)	+= mv_udc.o
30COBJS-$(CONFIG_CPU_PXA25X) += pxa25x_udc.o
31else
32# Devices not related to the new gadget layer depend on CONFIG_USB_DEVICE
33ifdef CONFIG_USB_DEVICE
34COBJS-y += core.o
35COBJS-y += ep0.o
36COBJS-$(CONFIG_DW_UDC) += designware_udc.o
37COBJS-$(CONFIG_OMAP1510) += omap1510_udc.o
38COBJS-$(CONFIG_OMAP1610) += omap1510_udc.o
39COBJS-$(CONFIG_MPC885_FAMILY) += mpc8xx_udc.o
40COBJS-$(CONFIG_CPU_PXA27X) += pxa27x_udc.o
41endif
42endif
43
44COBJS	:= $(COBJS-y)
45SRCS	:= $(COBJS:.o=.c)
46OBJS	:= $(addprefix $(obj),$(COBJS))
47
48all:	$(LIB)
49
50$(LIB):	$(obj).depend $(OBJS)
51	$(call cmd_link_o_target, $(OBJS))
52
53#########################################################################
54
55# defines $(obj).depend target
56include $(SRCTREE)/rules.mk
57
58sinclude $(obj).depend
59
60#########################################################################
61