2008-09-30 08:50:22 +08:00
|
|
|
############################################################################
|
2010-12-14 11:39:31 +08:00
|
|
|
# drivers/usbdev/Make.defs
|
2008-09-30 08:50:22 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08: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 08:50:22 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08:00
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
2008-09-30 08:50:22 +08:00
|
|
|
#
|
2021-03-04 14:10:42 +08: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 08:50:22 +08:00
|
|
|
#
|
|
|
|
############################################################################
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_USBDEV),y)
|
2011-05-16 23:09:39 +08:00
|
|
|
|
|
|
|
# Include USB device drivers
|
|
|
|
|
2012-01-26 07:04:17 +08:00
|
|
|
ifeq ($(CONFIG_PL2303),y)
|
2012-01-25 05:51:26 +08:00
|
|
|
CSRCS += pl2303.c
|
2008-10-24 04:53:39 +08:00
|
|
|
endif
|
2011-05-16 23:09:39 +08:00
|
|
|
|
2012-01-26 07:04:17 +08:00
|
|
|
ifeq ($(CONFIG_CDCACM),y)
|
2012-04-24 00:49:15 +08:00
|
|
|
CSRCS += cdcacm.c cdcacm_desc.c
|
2011-09-14 03:04:13 +08:00
|
|
|
endif
|
|
|
|
|
2012-01-26 04:17:59 +08:00
|
|
|
ifeq ($(CONFIG_USBMSC),y)
|
2012-04-24 00:49:15 +08:00
|
|
|
CSRCS += usbmsc.c usbmsc_desc.c usbmsc_scsi.c
|
2011-09-28 06:04:03 +08:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(CONFIG_USBDEV_COMPOSITE),y)
|
2012-04-24 00:49:15 +08:00
|
|
|
CSRCS += composite.c composite_desc.c
|
2008-09-30 08:50:22 +08:00
|
|
|
endif
|
|
|
|
|
2013-09-07 07:24:02 +08:00
|
|
|
ifeq ($(CONFIG_USBDEV_TRACE_STRINGS),y)
|
|
|
|
CSRCS += usbdev_strings.c
|
|
|
|
endif
|
|
|
|
|
2017-09-24 21:24:34 +08:00
|
|
|
ifeq ($(CONFIG_RNDIS),y)
|
|
|
|
CSRCS += rndis.c
|
|
|
|
endif
|
|
|
|
|
2018-10-31 22:50:01 +08:00
|
|
|
ifeq ($(CONFIG_DFU),y)
|
|
|
|
CSRCS += dfu.c
|
|
|
|
endif
|
|
|
|
|
2020-10-25 05:02:04 +08:00
|
|
|
ifeq ($(CONFIG_USBADB),y)
|
|
|
|
CSRCS += adb.c
|
|
|
|
endif
|
|
|
|
|
2018-08-16 22:49:11 +08:00
|
|
|
ifeq ($(CONFIG_NET_CDCECM),y)
|
|
|
|
CSRCS += cdcecm.c
|
|
|
|
endif
|
|
|
|
|
2012-01-25 05:51:26 +08:00
|
|
|
CSRCS += usbdev_trace.c usbdev_trprintf.c
|
2011-05-16 23:09:39 +08:00
|
|
|
|
|
|
|
# Include USB device build support
|
|
|
|
|
|
|
|
DEPPATH += --dep-path usbdev
|
|
|
|
VPATH += :usbdev
|
2020-03-26 11:51:22 +08:00
|
|
|
CFLAGS += ${shell $(INCDIR) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)usbdev}
|
2011-05-16 23:09:39 +08:00
|
|
|
endif
|