2008-09-30 02:50:22 +02:00
|
|
|
############################################################################
|
2010-12-14 04:39:31 +01:00
|
|
|
# drivers/usbdev/Make.defs
|
2008-09-30 02:50:22 +02:00
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership. The
|
|
|
|
# ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
# "License"); you may not use this file except in compliance with the
|
|
|
|
# License. You may obtain a copy of the License at
|
2008-09-30 02:50:22 +02:00
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2008-09-30 02:50:22 +02:00
|
|
|
#
|
2021-03-04 07:10:42 +01:00
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
# License for the specific language governing permissions and limitations
|
|
|
|
# under the License.
|
2008-09-30 02:50:22 +02:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_USBDEV),y)
|
2011-05-16 17:09:39 +02:00
|
|
|
|
|
|
|
# Include USB device drivers
|
|
|
|
|
2012-01-26 00:04:17 +01:00
|
|
|
ifeq ($(CONFIG_PL2303),y)
|
2012-01-24 22:51:26 +01:00
|
|
|
CSRCS += pl2303.c
|
2008-10-23 22:53:39 +02:00
|
|
|
endif
|
2011-05-16 17:09:39 +02:00
|
|
|
|
2012-01-26 00:04:17 +01:00
|
|
|
ifeq ($(CONFIG_CDCACM),y)
|
2012-04-23 18:49:15 +02:00
|
|
|
CSRCS += cdcacm.c cdcacm_desc.c
|
2011-09-13 21:04:13 +02:00
|
|
|
endif
|
|
|
|
|
2012-01-25 21:17:59 +01:00
|
|
|
ifeq ($(CONFIG_USBMSC),y)
|
2012-04-23 18:49:15 +02:00
|
|
|
CSRCS += usbmsc.c usbmsc_desc.c usbmsc_scsi.c
|
2011-09-28 00:04:03 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_USBDEV_COMPOSITE),y)
|
2012-04-23 18:49:15 +02:00
|
|
|
CSRCS += composite.c composite_desc.c
|
2008-09-30 02:50:22 +02:00
|
|
|
endif
|
|
|
|
|
2013-09-07 01:24:02 +02:00
|
|
|
ifeq ($(CONFIG_USBDEV_TRACE_STRINGS),y)
|
|
|
|
CSRCS += usbdev_strings.c
|
|
|
|
endif
|
|
|
|
|
2017-09-24 15:24:34 +02:00
|
|
|
ifeq ($(CONFIG_RNDIS),y)
|
|
|
|
CSRCS += rndis.c
|
|
|
|
endif
|
|
|
|
|
2018-10-31 15:50:01 +01:00
|
|
|
ifeq ($(CONFIG_DFU),y)
|
|
|
|
CSRCS += dfu.c
|
|
|
|
endif
|
|
|
|
|
2020-10-24 23:02:04 +02:00
|
|
|
ifeq ($(CONFIG_USBADB),y)
|
|
|
|
CSRCS += adb.c
|
|
|
|
endif
|
|
|
|
|
2018-08-16 16:49:11 +02:00
|
|
|
ifeq ($(CONFIG_NET_CDCECM),y)
|
|
|
|
CSRCS += cdcecm.c
|
|
|
|
endif
|
|
|
|
|
2012-01-24 22:51:26 +01:00
|
|
|
CSRCS += usbdev_trace.c usbdev_trprintf.c
|
2011-05-16 17:09:39 +02:00
|
|
|
|
|
|
|
# Include USB device build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path usbdev
|
|
|
|
VPATH += :usbdev
|
2020-03-26 04:51:22 +01:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)usbdev}
|
2011-05-16 17:09:39 +02:00
|
|
|
endif
|