xref: /openbmc/u-boot/drivers/usb/phy/Makefile (revision 127efc4f)
1#
2# Copyright (c) 2009 Wind River Systems, Inc.
3# Tom Rix <Tom.Rix@windriver.com>
4#
5# SPDX-License-Identifier:	GPL-2.0+
6#
7
8include $(TOPDIR)/config.mk
9
10LIB	:= $(obj)libusb_phy.o
11
12COBJS-$(CONFIG_TWL4030_USB) += twl4030.o
13COBJS-$(CONFIG_OMAP_USB_PHY) += omap_usb_phy.o
14
15COBJS	:= $(COBJS-y)
16SRCS	:= $(COBJS:.o=.c)
17OBJS	:= $(addprefix $(obj),$(COBJS))
18
19all:	$(LIB)
20
21$(LIB):	$(obj).depend $(OBJS)
22	$(call cmd_link_o_target, $(OBJS))
23
24#########################################################################
25
26# defines $(obj).depend target
27include $(SRCTREE)/rules.mk
28
29sinclude $(obj).depend
30
31#########################################################################
32