Makefile (11e4afb49b7fa1fc8e1ffd850c1806dd86a08204) | Makefile (25013315678c78091a7826be7097fa2b60e30aac) |
---|---|
1# 2# Makefile for USB Host Controller Drivers 3# 4 | 1# 2# Makefile for USB Host Controller Drivers 3# 4 |
5ifeq ($(CONFIG_USB_DEBUG),y) 6 EXTRA_CFLAGS += -DDEBUG 7endif | 5ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG |
8 9isp1760-objs := isp1760-hcd.o isp1760-if.o 10fhci-objs := fhci-hcd.o fhci-hub.o fhci-q.o fhci-mem.o \ 11 fhci-tds.o fhci-sched.o 12ifeq ($(CONFIG_FHCI_DEBUG),y) 13fhci-objs += fhci-dbg.o 14endif 15xhci-hcd-objs := xhci.o xhci-mem.o xhci-pci.o xhci-ring.o xhci-hub.o xhci-dbg.o --- 21 unchanged lines hidden --- | 6 7isp1760-objs := isp1760-hcd.o isp1760-if.o 8fhci-objs := fhci-hcd.o fhci-hub.o fhci-q.o fhci-mem.o \ 9 fhci-tds.o fhci-sched.o 10ifeq ($(CONFIG_FHCI_DEBUG),y) 11fhci-objs += fhci-dbg.o 12endif 13xhci-hcd-objs := xhci.o xhci-mem.o xhci-pci.o xhci-ring.o xhci-hub.o xhci-dbg.o --- 21 unchanged lines hidden --- |